Skip to content

Commit a16517e

Browse files
committed
Release v1.15.6
1 parent 26136e5 commit a16517e

File tree

4 files changed

+28
-5
lines changed

4 files changed

+28
-5
lines changed

CHANGELOG.md

+25-2
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,29 @@ 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.6 (2023-09-20)
121+
122+
This release also includes fixes to the Windows installer.
123+
124+
### 1. Bug fixes
125+
126+
#### EEx
127+
128+
* [EEx] Do not crash when printing tokenizer warnings
129+
130+
#### Elixir
131+
132+
* [Code] Fix formatter for nested `*` in bitstrings
133+
* [Code] Improve feedback when an invalid block is given `Code.quoted_to_algebra/2`
134+
* [Kernel] Trace functions before they are inlined
135+
136+
#### Mix
137+
138+
* [mix compile] Ensure `:extra_applications` declare in umbrella projects are loaded
139+
* [mix deps.get] Do not check for invalid applications before deps.get
140+
* [mix deps.update] Do not check for invalid applications before deps.update
141+
* [mix format] Load plugins when invoking the formatter from an IDE
142+
120143
## v1.15.5 (2023-08-28)
121144

122145
### 1. Enhancements
@@ -152,7 +175,7 @@ new features and on compatibility.
152175

153176
#### Mix
154177

155-
* [mix archive.build] Disable protocol consolidation when building archiveson archive.install
178+
* [mix archive.build] Disable protocol consolidation when building archives on archive.install
156179
* [mix compile] Track removed files per local dependency (this addresses a bug where files depending on modules from path dependencies always recompiled)
157180
* [mix release] Do not strip relevant chunks from Erlang/OTP 26
158181

@@ -166,7 +189,7 @@ new features and on compatibility.
166189

167190
#### Mix
168191

169-
* [Mix] Allow to opt out of starting apps in `Mix.install/2`
192+
* [Mix] Allow to opt-out of starting apps in `Mix.install/2`
170193

171194
### 2. Bug fixes
172195

VERSION

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

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.5
4+
ELIXIR_VERSION=1.15.6
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.5
3+
set ELIXIR_VERSION=1.15.6
44

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

0 commit comments

Comments
 (0)