From 24276b7dba306ade75404b998017911ac7600569 Mon Sep 17 00:00:00 2001 From: Erik Schierboom Date: Wed, 9 Oct 2024 12:41:18 +0200 Subject: [PATCH] Bump version to v.3.5.2 (#1176) --- CHANGELOG.md | 7 +++++++ cmd/version.go | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 83f6c0443..5d98f969a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,11 @@ The exercism CLI follows [semantic versioning](http://semver.org/). - **Your contribution here** +## v3.5.2 (2024-10-09) + +- [#1174](https://github.com/exercism/cli/pull/1174) Fix an issue with `exercism completion bash` where the command name is not present in the completion output. - [@petrem] +- [#1172](https://github.com/exercism/cli/pull/1172) Fix `exercism test` command for Batch track - [@bnandras] + ## v3.5.1 (2024-08-28) - [#1162](https://github.com/exercism/cli/pull/1162) Add support for Roc to `exercism test` - [@ageron] @@ -563,3 +568,5 @@ All changes by [@msgehard] [@glennj]: https://github.com/glennj [@tomasnorre]: https://github.com/tomasnorre [@ageron]: https://github.com/ageron +[@petrem]: https://github.com/petrem +[@bnandras]: https://github.com/bnandras diff --git a/cmd/version.go b/cmd/version.go index 9d2e226bb..73a20bf04 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.5.1" +const Version = "3.5.2" // checkLatest flag for version command. var checkLatest bool