Skip to content

Commit 9fd97c4

Browse files
committed
Release v1.15.5
1 parent 78cee0e commit 9fd97c4

File tree

4 files changed

+32
-3
lines changed

4 files changed

+32
-3
lines changed

CHANGELOG.md

+29
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,35 @@ in the long term.
117117
See the new `Logger` documentation for more information on the
118118
new features and on compatibility.
119119

120+
## v1.15.5 (2023-08-28)
121+
122+
### 1. Enhancements
123+
124+
#### IEx
125+
126+
* [IEx.Autocomplete] Speed up loading of struct suggestions
127+
128+
### 2. Bug fixes
129+
130+
#### Elixir
131+
132+
* [Code.Fragment] Fix `Code.Fragment.surround_context/2` for aliases and submodules of non-aliases
133+
* [Kernel] Ensure stacktrace is included when necessary when rescuing multiple exceptions in the same branch
134+
* [Kernel] Fix index in error message for unused optional arguments
135+
136+
#### ExUnit
137+
138+
* [ExUnit.Diff] Fix scenario where diff would not show up due to a timed-out loop
139+
140+
#### IEx
141+
142+
* [IEx] Force group leader to run as a binary and unicode in IEx
143+
144+
#### Mix
145+
146+
* [mix compile] Do not assume `blake` is always available
147+
* [mix format] Load and compile plugins if specified in subdirectories
148+
120149
## v1.15.4 (2023-07-18)
121150

122151
### 1. Bug fixes

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.15.4
1+
1.15.5

bin/elixir

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22
set -e
33

4-
ELIXIR_VERSION=1.15.4
4+
ELIXIR_VERSION=1.15.5
55

66
if [ $# -eq 0 ] || { [ $# -eq 1 ] && { [ "$1" = "--help" ] || [ "$1" = "-h" ]; }; }; then
77
cat <<USAGE >&2

bin/elixir.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@if defined ELIXIR_CLI_ECHO (@echo on) else (@echo off)
22

3-
set ELIXIR_VERSION=1.15.4
3+
set ELIXIR_VERSION=1.15.5
44

55
setlocal enabledelayedexpansion
66
if ""%1""=="""" if ""%2""=="""" goto documentation

0 commit comments

Comments
 (0)