From 7ce822f1103dfe6709b38f58ebe32897ef263380 Mon Sep 17 00:00:00 2001 From: Katrina Owen Date: Sat, 14 Jul 2018 18:43:05 -0500 Subject: [PATCH] Bump to version v3.0.3 --- CHANGELOG.md | 4 +++- cmd/version.go | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e9a5965e2..d3d656fa1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ The exercism CLI follows [semantic versioning](http://semver.org/). ---------------- ## Next Release +* **Your contribution here** + +## 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] [#618](https://github.com/exercism/cli/pull/618) Fix broken test in Windows build for relative paths - [@nywilken] @@ -12,7 +15,6 @@ The exercism CLI follows [semantic versioning](http://semver.org/). [#616](https://github.com/exercism/cli/pull/616) Add shell completion scripts to build artifacts - [@jdsutherland] [#624](https://github.com/exercism/cli/pull/624) Tweak command documentation to reflect reality - [@kytrinyx] [#625](https://github.com/exercism/cli/pull/625) Fix wildly excessive whitespace in error messages - [@kytrinyx] -* **Your contribution here** ## v3.0.2 (2018-07-13) * [#622](https://github.com/exercism/cli/pull/622) Fix bug with multi-file submission - [@kytrinyx] diff --git a/cmd/version.go b/cmd/version.go index 698a8acbb..78e3f9d97 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.2" +const Version = "3.0.3" // checkLatest flag for version command. var checkLatest bool