From 32aeac6c28d426a5149145813d14a3085f84ad1f Mon Sep 17 00:00:00 2001 From: Erik Schierboom Date: Thu, 15 Feb 2024 09:14:35 +0100 Subject: [PATCH] Bump version to v3.3.0 (#1129) --- CHANGELOG.md | 5 +++++ cmd/version.go | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1dcca2ff..9063d3e46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ The exercism CLI follows [semantic versioning](http://semver.org/). ## Next Release * **Your contribution here** +## v3.3.0 (2024-02-15) +* [#1128](https://github.com/exercism/cli/pull/1128) Fix `exercism test` command not working for the `8th` and `emacs-lisp` tracks - [@glennj] +* [#1125](https://github.com/exercism/cli/pull/1125) Simplify root command description +* [#1124](https://github.com/exercism/cli/pull/1124) Use correct domain for FAQ link [@tomasnorre] + ## v3.2.0 (2023-07-28) * [#1092](https://github.com/exercism/cli/pull/1092) Add `exercism test` command to run the unit tests for nearly any track (inspired by [universal-test-runner](https://github.com/xavdid/universal-test-runner)) - [@xavdid] * [#1073](https://github.com/exercism/cli/pull/1073) Add `arm64` build for each OS diff --git a/cmd/version.go b/cmd/version.go index d8e287f4a..c143cc403 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.2.0" +const Version = "3.3.0" // checkLatest flag for version command. var checkLatest bool