Skip to content

Commit 33f9d04

Browse files
committed
Release v1.13.1
1 parent 8804ff5 commit 33f9d04

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,29 @@ 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.1 (2021-12-14)
132+
133+
### 1. Bug fixes
134+
135+
#### Elixir
136+
137+
* [Code] Do not show code snippets in `SyntaxError` and `TokenMissingError` if line is empty
138+
* [Exception] Do not fail blaming `ArgumentError` for improper lists on `apply/3`
139+
* [Macro] Set a max `line_length` for `Macro.to_string/1`
140+
* [Macro] Fix formatting of lists on module attributes for `Macro.to_string/1`
141+
* [String] Fix incorrect codepoint byte counting in `slice` with negative positions in ranges
142+
* [Task] Ensure async streams can be consumed from another process than the one that creates them
143+
* [URI] Undeprecate `URI.parse/1` as `URI.new/1` is too strict in many common cases
144+
* [URI] Make sure `URI.new/1` returns nil for empty paths
145+
146+
#### IEx
147+
148+
* [IEx] Make sure the `--version` flag halts IEx
149+
150+
#### Mix
151+
152+
* [Mix] Make protocol consolidation part of the `Mix.install/2` cache
153+
131154
## v1.13.0 (2021-12-03)
132155

133156
### 1. Enhancements

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.13.0
1+
1.13.1

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

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

0 commit comments

Comments
 (0)