Skip to content

Commit 3bb5f92

Browse files
committed
Release v1.20.0-rc.1
1 parent cb472c1 commit 3bb5f92

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,18 @@ The code above has a type violation, which is now caught by the type system:
158158
159159
The type system was made possible thanks to a partnership between [CNRS](https://www.cnrs.fr/) and [Remote](https://remote.com/). The development work is currently sponsored by [Fresha](https://www.fresha.com/) and [Tidewave](https://tidewave.ai/).
160160
161+
## v1.20.0-rc.1 (2026-01-13)
162+
163+
### 1. Bug fixes
164+
165+
#### Elixir
166+
167+
* [Kernel] Improve the performance of the type system when working with large unions of open maps
168+
* [Kernel] Do not crash on map types with struct keys when performing type operations
169+
* [Kernel] Mark the outcome of bitstring types as dynamic
170+
* [Kernel] `<<expr::bitstring>>` will have type `binary` instead of `bitstring` if `expr` is a binary
171+
* [Kernel] Do not crash on conditional variables when calling a function on a module which is represented by a variable
172+
161173
## v1.20.0-rc.0 (2026-01-09)
162174
163175
### 1. Enhancements

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.20.0-rc.0
1+
1.20.0-rc.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.20.0-rc.0
9+
ELIXIR_VERSION=1.20.0-rc.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.20.0-rc.0
7+
set ELIXIR_VERSION=1.20.0-rc.1
88

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

0 commit comments

Comments
 (0)