From 47abe2d107e654ccede845356773bcf6e11ef7cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Sat, 6 Jul 2024 23:10:25 +0200 Subject: [PATCH] Release v1.17.2 --- CHANGELOG.md | 14 ++++++++++++++ VERSION | 2 +- bin/elixir | 2 +- bin/elixir.bat | 2 +- 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8546bf5c1ed..f5ee75b27bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -70,6 +70,20 @@ Finally, a new `Kernel.to_timeout/1` function has been added, which helps develo Process.send_after(pid, :wake_up, to_timeout(hour: 1)) ``` +## v1.17.2 (2024-07-06) + +### 1. Bug fixes + +#### Logger + + * [Logger.Translator] Fix logger crash when `:gen_statem`'s `format_status/2` returns non-tuple + +#### Mix + + * [mix deps.get] Fix regression when fetching a git repository with a `:ref` + * [mix release] Validate `RELEASE_MODE` and set ERRORLEVEL on `.bat` scripts + * [mix release] Fix invalid example in code comment inside the generated vm.args.eex + ## v1.17.1 (2024-06-18) ### 1. Enhancements diff --git a/VERSION b/VERSION index 511a76e6faf..06fb41b6322 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.17.1 +1.17.2 diff --git a/bin/elixir b/bin/elixir index b42f168af7a..90b1ec9344a 100755 --- a/bin/elixir +++ b/bin/elixir @@ -1,7 +1,7 @@ #!/bin/sh set -e -ELIXIR_VERSION=1.17.1 +ELIXIR_VERSION=1.17.2 if [ $# -eq 0 ] || { [ $# -eq 1 ] && { [ "$1" = "--help" ] || [ "$1" = "-h" ]; }; }; then cat <&2 diff --git a/bin/elixir.bat b/bin/elixir.bat index 757866bb0ff..20d01b8d614 100644 --- a/bin/elixir.bat +++ b/bin/elixir.bat @@ -1,6 +1,6 @@ @echo off -set ELIXIR_VERSION=1.17.1 +set ELIXIR_VERSION=1.17.2 if ""%1""=="""" if ""%2""=="""" goto documentation if /I ""%1""==""--help"" if ""%2""=="""" goto documentation