Skip to content

Commit

Permalink
Release v1.15.6
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Sep 20, 2023
1 parent 26136e5 commit a16517e
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 5 deletions.
27 changes: 25 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,29 @@ in the long term.
See the new `Logger` documentation for more information on the
new features and on compatibility.

## v1.15.6 (2023-09-20)

This release also includes fixes to the Windows installer.

### 1. Bug fixes

#### EEx

* [EEx] Do not crash when printing tokenizer warnings

#### Elixir

* [Code] Fix formatter for nested `*` in bitstrings
* [Code] Improve feedback when an invalid block is given `Code.quoted_to_algebra/2`
* [Kernel] Trace functions before they are inlined

#### Mix

* [mix compile] Ensure `:extra_applications` declare in umbrella projects are loaded
* [mix deps.get] Do not check for invalid applications before deps.get
* [mix deps.update] Do not check for invalid applications before deps.update
* [mix format] Load plugins when invoking the formatter from an IDE

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

### 1. Enhancements
Expand Down Expand Up @@ -152,7 +175,7 @@ new features and on compatibility.

#### Mix

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

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

#### Mix

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

### 2. Bug fixes

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.15.5
1.15.6
2 changes: 1 addition & 1 deletion bin/elixir
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
set -e

ELIXIR_VERSION=1.15.5
ELIXIR_VERSION=1.15.6

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

set ELIXIR_VERSION=1.15.5
set ELIXIR_VERSION=1.15.6

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

0 comments on commit a16517e

Please sign in to comment.