Skip to content

Commit 7e4fbe6

Browse files
committed
Release v1.13.4
1 parent d52f533 commit 7e4fbe6

File tree

4 files changed

+28
-3
lines changed

4 files changed

+28
-3
lines changed

CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,31 @@ Now any application can use your formatter as follows:
128128

129129
Finally, the `Code` module has also been augmented with two functions: `Code.string_to_quoted_with_comments/2` and `Code.quoted_to_algebra/2`. Those functions allow someone to retrieve the Elixir AST with their original source code comments, and then convert this AST to formatted code. In other words, those functions provide a wrapper around the Elixir Code Formatter, supporting developers who wish to create tools that directly manipulate and custom format Elixir source code.
130130

131+
## v1.13.4 (2022-04-07)
132+
133+
This release has been verified to work with Erlang/OTP 25 RC2.
134+
135+
### 1. Enhancements
136+
137+
#### Elixir
138+
139+
* [Code] Allow iodata to be returned in sigil formatting functions
140+
* [Code] Pass opening delimiter information to sigil formatting functions
141+
142+
### 2. Bug fixes
143+
144+
#### Elixir
145+
146+
* [Kernel] Tweak type unification to fix infinite loop with recursive vars
147+
* [Kernel] Add compile-time dependencies on `require`
148+
* [Registry] Make `Registry` send work with named triplets
149+
150+
### 3. Deprecations
151+
152+
#### Mix
153+
154+
* [mix rebar] Deprecate Rebar 2 as it no longer works on Erlang/OTP 25
155+
131156
## v1.13.3 (2022-02-09)
132157

133158
### 1. Enhancements

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.13.3
1+
1.13.4

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

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

0 commit comments

Comments
 (0)