From 978ee143c0e4bc0dfd78fda606722e96296e6334 Mon Sep 17 00:00:00 2001 From: Eric Kingery Date: Thu, 24 Oct 2019 09:36:27 -0500 Subject: [PATCH] Bumping version to v3.0.13 --- CHANGELOG.md | 6 ++++++ cmd/version.go | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 724403b8c..7c8982c2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ The exercism CLI follows [semantic versioning](http://semver.org/). ## Next Release * **Your contribution here** +## v3.0.13 (2019-10-23) +* [#866](https://github.com/exercism/cli/pull/866) The API token outputted during verbose will now be masked by default - [@Jrank2013] +* [#873](https://github.com/exercism/cli/pull/873) Make all errors in cmd package checked - [@avegner] +* [#871](https://github.com/exercism/cli/pull/871) Error message returned if the track is locked - [@Jrank2013] +* [#886](https://github.com/exercism/cli/pull/886) Added GoReleaser config, updated docs, made archive naming adjustments - [@ekingery] + ## v3.0.12 (2019-07-07) * [#770](https://github.com/exercism/cli/pull/770) Print API error messages in submit command - [@Smarticles101] * [#763](https://github.com/exercism/cli/pull/763) Add Fish shell tab completions - [@John-Goff] diff --git a/cmd/version.go b/cmd/version.go index 45c88ff55..3b81f5897 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.12" +const Version = "3.0.13" // checkLatest flag for version command. var checkLatest bool