diff --git a/CHANGELOG.md b/CHANGELOG.md index d3d656fa1..ade69e984 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ The exercism CLI follows [semantic versioning](http://semver.org/). ## Next Release * **Your contribution here** +## v3.0.4 (2018-07-15) +[#644](https://github.com/exercism/cli/pull/644) Add better error messages when solution metadata is missing - [@kytrinyx] + ## v3.0.3 (2018-07-14) [#642](https://github.com/exercism/cli/pull/642) Add better error messages when configuration is needed before download - [@kytrinyx] [#641](https://github.com/exercism/cli/pull/641) Fix broken download for uuid flag - [@kytrinyx] diff --git a/cmd/version.go b/cmd/version.go index 78e3f9d97..c23280971 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -9,7 +9,7 @@ import ( // Version is the version of the current build. // It follows semantic versioning. -const Version = "3.0.3" +const Version = "3.0.4" // checkLatest flag for version command. var checkLatest bool