Skip to content

Commit 2765e0f

Browse files
committed
Release v1.13.0-rc.1
1 parent c1fd4dd commit 2765e0f

File tree

4 files changed

+39
-3
lines changed

4 files changed

+39
-3
lines changed

CHANGELOG.md

+36
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,42 @@ 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.0-rc.1 (2021-11-16)
132+
133+
### 1. Enhancements
134+
135+
#### Mix
136+
137+
* [Mix] Add `Mix.installed?/0`
138+
139+
### 2. Bug fixes
140+
141+
#### Elixir
142+
143+
* [Application] Allow any expression as first argument of `compile_env`
144+
* [Kernel] Reject bidirectional formatting characters in strings and comments
145+
* [Kernel] Support escaping of terminators in uppercase sigils heredocs for consistency
146+
147+
#### IEx
148+
149+
* [IEx] Stop evaluator before exiting IEx server
150+
151+
#### Mix
152+
153+
* [mix release] Raise proper error message when non-serializable values are in configs
154+
155+
### 3. Regressions
156+
157+
#### Elixir
158+
159+
* [Code] Do not crash on duplicate bindings during eval
160+
* [Macro] Do not raise on variables that look like an empty tuple in `Macro.to_string/1`
161+
* [URI] Make sure parsed URIs with empty paths have the path field set to nil
162+
163+
#### Mix
164+
165+
* [Mix.Shell] Re-add `yes?/1` as a callback
166+
131167
## v1.13.0-rc.0 (2021-11-01)
132168

133169
### 1. Enhancements

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.13.0-rc.0
1+
1.13.0-rc.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-rc.0
4+
ELIXIR_VERSION=1.13.0-rc.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-rc.0
3+
set ELIXIR_VERSION=1.13.0-rc.1
44

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

0 commit comments

Comments
 (0)