From e21aa6586f2cae94dfbdd90beeca942ad12f31bd Mon Sep 17 00:00:00 2001 From: Katrina Owen Date: Wed, 29 Aug 2018 16:07:40 -0600 Subject: [PATCH] Bump version to v3.0.9 --- CHANGELOG.md | 2 ++ cmd/version.go | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e7ad52e1..8c9d73775 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The exercism CLI follows [semantic versioning](http://semver.org/). ## Next Release * **Your contribution here** + +## v3.0.9 (2018-08-29) * [#720](https://github.com/exercism/cli/pull/720) Make the timeout configurable globally - [@kytrinyx] * [#721](https://github.com/exercism/cli/pull/721) Handle windows filepaths that accidentally got submitted to the server - [@kytrinyx] * [#722](https://github.com/exercism/cli/pull/722) Handle exercise directories with numeric suffixes - [@kytrinyx] diff --git a/cmd/version.go b/cmd/version.go index f65b5e5a7..f83413265 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.8" +const Version = "3.0.9" // checkLatest flag for version command. var checkLatest bool