diff --git a/CHANGELOG.md b/CHANGELOG.md index 6398a756a..959baeab4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,11 @@ The exercism CLI follows [semantic versioning](http://semver.org/). - **Your contribution here** +## v3.4.2 (2024-08-20) + +- [#1156](https://github.com/exercism/cli/pull/1156) Add `test` command to Shell completions - + [@muzimuzhi] + ## v3.4.1 (2024-08-15) - [#1152](https://github.com/exercism/cli/pull/1152) Add support for Idris to `exercism test` - diff --git a/cmd/version.go b/cmd/version.go index 300ba8f72..147c8e0b9 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.1" +const Version = "3.4.2" // checkLatest flag for version command. var checkLatest bool