diff --git a/CHANGELOG.md b/CHANGELOG.md index 6398a756a..173a1131e 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` - @@ -473,16 +478,16 @@ All changes by [@msgehard] - Implement login and logout - Build on Travis -[@AlexWheeler]: https://github.com/AlexWheeler +[@alexwheeler]: https://github.com/AlexWheeler [@andrerfcsantos]: https://github.com/andrerfcsantos [@avegner]: https://github.com/avegner -[@Dparker1990]: https://github.com/Dparker1990 -[@John-Goff]: https://github.com/John-Goff -[@LegalizeAdulthood]: https://github.com/LegalizeAdulthood -[@QuLogic]: https://github.com/QuLogic -[@Smarticles101]: https://github.com/Smarticles101 -[@Tonkpils]: https://github.com/Tonkpils -[@TrevorBramble]: https://github.com/TrevorBramble +[@dparker1990]: https://github.com/Dparker1990 +[@john-goff]: https://github.com/John-Goff +[@legalizeadulthood]: https://github.com/LegalizeAdulthood +[@qulogic]: https://github.com/QuLogic +[@smarticles101]: https://github.com/Smarticles101 +[@tonkpils]: https://github.com/Tonkpils +[@trevorbramble]: https://github.com/TrevorBramble [@alebaffa]: https://github.com/alebaffa [@ambroff]: https://github.com/ambroff [@andrewsardone]: https://github.com/andrewsardone @@ -497,7 +502,7 @@ All changes by [@msgehard] [@djquan]: https://github.com/djquan [@dmmulroy]: https://github.com/dmmulroy [@dpritchett]: https://github.com/dpritchett -[@eToThePiIPower]: https://github.com/eToThePiIPower +[@etothepiipower]: https://github.com/eToThePiIPower [@ebautistabar]: https://github.com/ebautistabar [@ekingery]: https://github.com/ekingery [@elimisteve]: https://github.com/elimisteve @@ -512,7 +517,7 @@ All changes by [@msgehard] [@jdsutherland]: https://github.com/jdsutherland [@jgsqware]: https://github.com/jgsqware [@jish]: https://github.com/jish -[@Jrank2013]: https://github.com/Jrank2013 +[@jrank2013]: https://github.com/Jrank2013 [@jppunnett]: https://github.com/jppunnett [@katrinleinweber]: https://github.com/katrinleinweber [@kytrinyx]: https://github.com/kytrinyx 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