Skip to content

Commit ce8f0ac

Browse files
committed
Release v1.14.5
1 parent 2d71e71 commit ce8f0ac

File tree

6 files changed

+19
-5
lines changed

6 files changed

+19
-5
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,20 @@ protocol, giving developers more control over the struct representation.
241241
See the updated documentation for `Inspect` for a general rundown on
242242
the approaches and options available.
243243

244+
## v1.14.5 (2023-05-22)
245+
246+
This release contains fixes for Erlang/OTP 26.
247+
248+
### Bug fixes
249+
250+
#### Elixir
251+
252+
* [CLI] Fix a bug where stdout would block when there was no attached terminal on Windows when running on Erlang/OTP 26
253+
254+
#### Mix
255+
256+
* [Mix] Properly set SSL configuration for Mix downloads when running on Erlang/OTP 26
257+
244258
## v1.14.4 (2023-04-03)
245259

246260
This release adds basic support for Erlang/OTP 26. When migrating

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ Docs.zip: docs
228228

229229
Precompiled.zip: build_man compile
230230
rm -f Precompiled.zip
231-
zip -9 -r Precompiled.zip bin CHANGELOG.md lib/*/ebin lib/*/lib LICENSE man NOTICE README.md VERSION
231+
zip -9 -r Precompiled.zip bin CHANGELOG.md lib/*/ebin lib/*/lib LICENSE Makefile man NOTICE README.md VERSION
232232
@ echo "Precompiled file created $(CURDIR)/Precompiled.zip"
233233

234234
#==> Test tasks

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.14.4
1+
1.14.5

bin/elixir

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22
set -e
33

4-
ELIXIR_VERSION=1.14.4
4+
ELIXIR_VERSION=1.14.5
55

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

bin/elixir.bat

Lines changed: 1 addition & 1 deletion
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.14.4
3+
set ELIXIR_VERSION=1.14.5
44

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

lib/elixir/pages/compatibility-and-deprecations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Erlang/OTP versioning is independent from the versioning of Elixir. Erlang relea
4242

4343
Elixir version | Supported Erlang/OTP versions
4444
:------------- | :-------------------------------
45-
1.14 | 23 - 25 (and Erlang/OTP 26 from v1.14.4)
45+
1.14 | 23 - 25 (and Erlang/OTP 26 from v1.14.5)
4646
1.13 | 22 - 24 (and Erlang/OTP 25 from v1.13.4)
4747
1.12 | 22 - 24
4848
1.11 | 21 - 23 (and Erlang/OTP 24 from v1.11.4)

0 commit comments

Comments
 (0)