Skip to content

Commit b1a7afd

Browse files
committed
Release v1.19.1
1 parent e9bf5df commit b1a7afd

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,26 @@ 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.1 (2025-10-20)
238+
239+
### 1. Bug fixes
240+
241+
#### EEx
242+
243+
* [EEx] Address Dialyzer warnings when invoking `EEx.compile_string`
244+
245+
#### Elixir
246+
247+
* [Kernel] Optimize how types are computed for pretty printing
248+
* [Kernel] Optimize how differences are computed in the type system
249+
* [Macro] Do not escape options given to `dbg/2`
250+
* [Protocol] Improve protocol violation warnings
251+
252+
#### Mix
253+
254+
* [mix compile] Do not attempt to touch deleted files when compilation fails and then resumed with missing files
255+
* [mix deps.compile] Do not spawn partitions when all dependencies are local and already compiled
256+
237257
## v1.19.0 (2025-10-16)
238258

239259
### 1. Enhancements

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.19.0
1+
1.19.1

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.0
9+
ELIXIR_VERSION=1.19.1
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.0
7+
set ELIXIR_VERSION=1.19.1
88

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

0 commit comments

Comments
 (0)