Skip to content

Commit

Permalink
Release v1.15.3
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Jul 15, 2023
1 parent 0a3df50 commit 694b9b0
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 3 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Expand Up @@ -117,6 +117,32 @@ in the long term.
See the new `Logger` documentation for more information on the
new features and on compatibility.

## v1.15.3 (2023-07-15)

### 1. Enhancements

#### Elixir

* [Kernel] Improve better stacktraces when executing unnested Elixir code in a file

#### Mix

* [Mix] Allow to opt out of starting apps in `Mix.install/2`

### 2. Bug fixes

#### Elixir

* [Code] Ensure `with_diagnostics` propagate warnings from inner Erlang passes

#### IEx

* [IEx] Fix `--remsh` on Erlang/OTP 25 and earlier

#### Mix

* [mix compile.elixir] Ensure `__mix_recompile__?` callbacks are properly invoked

## v1.15.2 (2023-07-01)

### 1. Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
1.15.2
1.15.3
2 changes: 1 addition & 1 deletion bin/elixir
@@ -1,7 +1,7 @@
#!/bin/sh
set -e

ELIXIR_VERSION=1.15.2
ELIXIR_VERSION=1.15.3

if [ $# -eq 0 ] || { [ $# -eq 1 ] && { [ "$1" = "--help" ] || [ "$1" = "-h" ]; }; }; then
cat <<USAGE >&2
Expand Down
2 changes: 1 addition & 1 deletion bin/elixir.bat
@@ -1,6 +1,6 @@
@if defined ELIXIR_CLI_ECHO (@echo on) else (@echo off)

set ELIXIR_VERSION=1.15.2
set ELIXIR_VERSION=1.15.3

setlocal enabledelayedexpansion
if ""%1""=="""" if ""%2""=="""" goto documentation
Expand Down

0 comments on commit 694b9b0

Please sign in to comment.