From 04a89e435fcc47c83ed10792b189a94869c3ec55 Mon Sep 17 00:00:00 2001 From: Erik Schierboom Date: Sun, 6 Jul 2025 20:43:55 +0200 Subject: [PATCH] Bump version to 3.5.6 --- CHANGELOG.md | 30 +++++++++++++++++++----------- cmd/version.go | 2 +- 2 files changed, 20 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 606588690..e5693792d 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.6 (2025-07-06) + +- [#1199](https://github.com/exercism/cli/pull/1199) Support for Futhark in exercism test - [@erikschierboom] +- [#1198](https://github.com/exercism/cli/pull/1198) Show a "try again after" message when a response sets a Retry-After header - [@isaacg] +- [#1196](https://github.com/exercism/cli/pull/1196) Check HTTP response content type before trying to decode it as JSON - [@isaacg] + ## v3.5.5 (2025-05-30) - [#1192](https://github.com/exercism/cli/pull/1192) Change Idris test command to use slug - [@keiravillekode] @@ -507,16 +513,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 @@ -531,22 +537,24 @@ 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 +[@erikschierboom]: https://github.com/erikschierboom [@ests]: https://github.com/ests [@farisj]: https://github.com/farisj [@glebedel]: https://github.com/glebedel [@harimp]: https://github.com/harimp [@harugo]: https://github.com/harugo [@hjljo]: https://github.com/hjljo +[@isaacg]: https://github.com/isaacg [@isbadawi]: https://github.com/isbadawi [@jbaiter]: https://github.com/jbaiter [@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 @@ -572,7 +580,7 @@ All changes by [@msgehard] [@xavdid]: https://github.com/xavdid [@williandrade]: https://github.com/williandrade [@zabawaba99]: https://github.com/zabawaba99 -[@GroophyLifefor]: https://github.com/GroophyLifefor +[@groophylifefor]: https://github.com/GroophyLifefor [@muzimuzhi]: https://github.com/muzimuzhi [@isberg]: https://github.com/isberg [@erikschierboom]: https://github.com/erikschierboom diff --git a/cmd/version.go b/cmd/version.go index a0bb6abbe..02f9c955b 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.5" +const Version = "3.5.6" // checkLatest flag for version command. var checkLatest bool