Skip to content

Commit 9ad1829

Browse files
committed
Release v1.13.2
1 parent 16292c6 commit 9ad1829

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ 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.2-dev
131+
## v1.13.2 (2022-01-13)
132132

133133
### 1. Enhancements
134134

@@ -143,10 +143,10 @@ Finally, the `Code` module has also been augmented with two functions: `Code.str
143143
#### Elixir
144144

145145
* [Code] Do not emit warnings on `Code.Fragment.container_cursor_to_quoted/2`
146-
* [Keyword] Deprecate the recently added `Keyword.map/2`as it is equivalent to `Keyword.new/2`
147146
* [Kernel] Fix a crash when a for-comprehension with `:uniq` was used inside another comprehension with `:uniq`
148147
* [Kernel] Ensure `env.context_modules` is properly set inside optimized `defmodule`
149-
* [Map] Deprecate the recently added `Map.map/2`as it is equivalent to `Map.new/2`
148+
* [Keyword] Deprecate the recently added `Keyword.map/2` as it is equivalent to `Keyword.new/2`
149+
* [Map] Deprecate the recently added `Map.map/2` as it is equivalent to `Map.new/2`
150150
* [Protocol] Warn on zero arity callbacks inside protocols
151151

152152
## v1.13.1 (2021-12-14)

VERSION

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

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

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

0 commit comments

Comments
 (0)