Skip to content

Commit b63f8f5

Browse files
committed
Release v1.13.3
1 parent babbae7 commit b63f8f5

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,30 @@ 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.3 (2022-02-09)
132+
133+
### 1. Enhancements
134+
135+
#### Mix
136+
137+
* [mix format] Supply file and line to formatter plugins
138+
* [mix format] Support embedded Elixir expressions inside formatter plugins
139+
140+
### 2. Bug fixes
141+
142+
#### Elixir
143+
144+
* [Code] Fix duplicate bindings causing errors during evaluation
145+
* [Kernel] Make sure signatures stored in the Documentation chunk does not contain newlines
146+
* [Kernel] Fix infinite loop when compiling guards with recursive map access
147+
* [Macro] Fix error on `Macro.to_string/1` when the plain alias `Elixir` is given
148+
* [String] Fix error for certain codepoint combinations in `String.split_at/2`
149+
150+
#### Mix
151+
152+
* [mix compile] Recompile project files when exports from dependencies change
153+
* [mix test] Fix total coverage always showing in red even when above the threshold
154+
131155
## v1.13.2 (2022-01-13)
132156

133157
### 1. Enhancements

VERSION

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

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

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

0 commit comments

Comments
 (0)