Skip to content

Commit 927b10d

Browse files
committed
Release v1.15.7
1 parent bbe04b4 commit 927b10d

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-3
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,24 @@ 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.7 (2023-10-14)
121+
122+
### 1. Enhancements
123+
124+
#### Elixir
125+
126+
* [Elixir] Allow code evaluation across Elixir versions
127+
128+
### 2. Bug fixes
129+
130+
#### EEx
131+
132+
* [EEx] Do not emit duplicate warnings from tokenizer
133+
134+
#### Mix
135+
136+
* [mix format] Correctly match file to subdirectory in `Mix.Tasks.Format.formatter_for_file/2`
137+
120138
## v1.15.6 (2023-09-20)
121139

122140
This release also includes fixes to the Windows installer.

VERSION

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

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

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

0 commit comments

Comments
 (0)