diff --git a/CHANGELOG.md b/CHANGELOG.md index 6db5f326d75..a66220d3698 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -117,6 +117,14 @@ in the long term. See the new `Logger` documentation for more information on the new features and on compatibility. +## v1.15.2 (2023-07-01) + +### 1. Bug fixes + +#### IEx + + * [IEx] Fix CLI being unable to boot on Windows + ## v1.15.1 (2023-06-30) ### 1. Enhancements diff --git a/VERSION b/VERSION index 795d8700112..4761f0e9dce 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.15.1 \ No newline at end of file +1.15.2 \ No newline at end of file diff --git a/bin/elixir b/bin/elixir index 2ffd2168f3a..da8578a50cb 100755 --- a/bin/elixir +++ b/bin/elixir @@ -1,7 +1,7 @@ #!/bin/sh set -e -ELIXIR_VERSION=1.15.1 +ELIXIR_VERSION=1.15.2 if [ $# -eq 0 ] || { [ $# -eq 1 ] && { [ "$1" = "--help" ] || [ "$1" = "-h" ]; }; }; then cat <&2 diff --git a/bin/elixir.bat b/bin/elixir.bat index 1be84a22698..352d56d15dd 100644 --- a/bin/elixir.bat +++ b/bin/elixir.bat @@ -1,6 +1,6 @@ @if defined ELIXIR_CLI_ECHO (@echo on) else (@echo off) -set ELIXIR_VERSION=1.15.1 +set ELIXIR_VERSION=1.15.2 setlocal enabledelayedexpansion if ""%1""=="""" if ""%2""=="""" goto documentation