From 7c1f4838a1b08b76ed80d35ea466d12f0a86cea7 Mon Sep 17 00:00:00 2001 From: nywilken Date: Wed, 3 Oct 2018 18:06:55 -0400 Subject: [PATCH] Bump version to v3.0.10 --- CHANGELOG.md | 3 +++ cmd/version.go | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c044834af..aaf1c96df 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.10 (2018-10-03) +* official release of v3.0.10-alpha.1 - [@nywilken] + ## v3.0.10-alpha.1 (2018-09-21) * [#739](https://github.com/exercism/cli/pull/739) update maxFileSize error to include filename - [@nywilken] * [#736](https://github.com/exercism/cli/pull/736) Metadata file .solution.json renamed to metadata.json - [@jdsutherland] diff --git a/cmd/version.go b/cmd/version.go index 155f777ba..5005821a7 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.10-alpha.1" +const Version = "3.0.10" // checkLatest flag for version command. var checkLatest bool