Skip to content

Commit 427d21e

Browse files
committed
Release v1.19.3
1 parent 24a188a commit 427d21e

File tree

4 files changed

+31
-3
lines changed

4 files changed

+31
-3
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,34 @@ These additions offer greater transparency into the components and licenses of e
234234

235235
This work was performed by [Jonatan Männchen](https://maennchen.dev) and sponsored by the [Erlang Ecosystem Foundation](https://erlef.org).
236236

237+
## v1.19.3 (2025-11-13)
238+
239+
### 1. Enhancements
240+
241+
#### Elixir
242+
243+
* [Kernel] Support /E modifier for regular expressions in config files
244+
245+
#### Mix
246+
247+
* [mix compile] Allow forcing specific compilers, such as `--force-elixir`, `--force-app`, etc
248+
* [mix help app:APP] Support showing helps for apps in Elixir and Erlang standard libraries
249+
250+
### 2. Bug fixes
251+
252+
#### Elixir
253+
254+
* [IO] Fix dialyzer warning on `IO.inspect :label`
255+
256+
#### ExUnit
257+
258+
* [ExUnit.Case] Fix crash when formatting errors caused by a linked/trapped exit during `setup_all`
259+
260+
#### Mix
261+
262+
* [mix compile.app] Ensure functions in the format `&Mod.fun/arity` can be written to .app files
263+
* [mix compile.app] Ensure strings with Unicode characters can be written to .app files
264+
237265
## v1.19.2 (2025-11-02)
238266

239267
### 1. Enhancements

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.19.2
1+
1.19.3

bin/elixir

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
set -e
88

9-
ELIXIR_VERSION=1.19.2
9+
ELIXIR_VERSION=1.19.3
1010

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

bin/elixir.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
:: SPDX-FileCopyrightText: 2021 The Elixir Team
55
:: SPDX-FileCopyrightText: 2012 Plataformatec
66

7-
set ELIXIR_VERSION=1.19.2
7+
set ELIXIR_VERSION=1.19.3
88

99
if ""%1""=="""" if ""%2""=="""" goto documentation
1010
if /I ""%1""==""--help"" if ""%2""=="""" goto documentation

0 commit comments

Comments
 (0)