From bdbcc49fac3496ef92d1ac24d715a6d3ec76384e Mon Sep 17 00:00:00 2001 From: Erik Schierboom Date: Thu, 22 Aug 2024 15:56:35 +0200 Subject: [PATCH] Bump to version 3.5.0 (#1161) --- CHANGELOG.md | 15 +++++++++++++++ cmd/version.go | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 959baeab4..03cd7ed6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ The exercism CLI follows [semantic versioning](http://semver.org/). - **Your contribution here** +## v3.5.0 (2024-08-22) + +- [#1157](https://github.com/exercism/cli/pull/1157) Add support for Batch to `exercism test` - [@GroophyLifefor] +- [#1159](https://github.com/exercism/cli/pull/1159) Fix duplicated `t` alias - + [@muzimuzhi] + ## v3.4.2 (2024-08-20) - [#1156](https://github.com/exercism/cli/pull/1156) Add `test` command to Shell completions - @@ -543,3 +549,12 @@ All changes by [@msgehard] [@xavdid]: https://github.com/xavdid [@williandrade]: https://github.com/williandrade [@zabawaba99]: https://github.com/zabawaba99 +[@GroophyLifefor]: https://github.com/GroophyLifefor +[@muzimuzhi]: https://github.com/muzimuzhi +[@isberg]: https://github.com/isberg +[@erikschierboom]: https://github.com/erikschierboom +[@sanderploegsma]: https://github.com/sanderploegsma +[@enascimento178]: https://github.com/enascimento178 +[@halfdan]: https://github.com/halfdan +[@glennj]: https://github.com/glennj +[@tomasnorre]: https://github.com/tomasnorre diff --git a/cmd/version.go b/cmd/version.go index 147c8e0b9..cc6644b4c 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.4.2" +const Version = "3.5.0" // checkLatest flag for version command. var checkLatest bool