Skip to content

Commit

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

## v1.15.5 (2023-08-28)

### 1. Enhancements

#### IEx

* [IEx.Autocomplete] Speed up loading of struct suggestions

### 2. Bug fixes

#### Elixir

* [Code.Fragment] Fix `Code.Fragment.surround_context/2` for aliases and submodules of non-aliases
* [Kernel] Ensure stacktrace is included when necessary when rescuing multiple exceptions in the same branch
* [Kernel] Fix index in error message for unused optional arguments

#### ExUnit

* [ExUnit.Diff] Fix scenario where diff would not show up due to a timed-out loop

#### IEx

* [IEx] Force group leader to run as a binary and unicode in IEx

#### Mix

* [mix compile] Do not assume `blake` is always available
* [mix format] Load and compile plugins if specified in subdirectories

## v1.15.4 (2023-07-18)

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

ELIXIR_VERSION=1.15.4
ELIXIR_VERSION=1.15.5

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.4
set ELIXIR_VERSION=1.15.5

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

0 comments on commit 9fd97c4

Please sign in to comment.