From fe08d1879e820d4133ea87e9e8b2a913fb53727d Mon Sep 17 00:00:00 2001 From: Erik Schierboom Date: Wed, 28 Aug 2024 11:45:25 +0200 Subject: [PATCH] Bump version to v3.5.1 (#1163) --- CHANGELOG.md | 5 +++++ cmd/version.go | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 03cd7ed6b..83f6c0443 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ The exercism CLI follows [semantic versioning](http://semver.org/). - **Your contribution here** +## v3.5.1 (2024-08-28) + +- [#1162](https://github.com/exercism/cli/pull/1162) Add support for Roc to `exercism test` - [@ageron] + ## v3.5.0 (2024-08-22) - [#1157](https://github.com/exercism/cli/pull/1157) Add support for Batch to `exercism test` - [@GroophyLifefor] @@ -558,3 +562,4 @@ All changes by [@msgehard] [@halfdan]: https://github.com/halfdan [@glennj]: https://github.com/glennj [@tomasnorre]: https://github.com/tomasnorre +[@ageron]: https://github.com/ageron diff --git a/cmd/version.go b/cmd/version.go index cc6644b4c..9d2e226bb 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.0" +const Version = "3.5.1" // checkLatest flag for version command. var checkLatest bool