Skip to content

Commit 16292c6

Browse files
committed
Update CHANGELOG
1 parent d25ce48 commit 16292c6

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

CHANGELOG.md

+16-4
Original file line numberDiff line numberDiff line change
@@ -128,14 +128,26 @@ 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 (2021-12-14)
131+
## v1.13.2-dev
132132

133-
### 1. Bug fixes
133+
### 1. Enhancements
134+
135+
#### Mix
136+
137+
* [mix format] Allow plugins to also format `.ex` and `.exs` files
138+
* [mix release] Allow bypassing application mode validation in release spec
139+
* [mix test] Print a message when the suite fails due to the coverage threshold
140+
141+
### 2. Bug fixes
134142

135143
#### Elixir
136144

137-
* [Keyword] The recently added `Keyword.map/2`, `Keyword.reject/2`, and `Keyword.filter/2` have been deprecated. Use the equivalent `Enum` functions instead
138-
* [Map] The recently added `Map.map/2`, `Map.reject/2`, and `Map.filter/2` have been deprecated. Use `Map.new/2` and/or the equivalent `Enum` functions instead
145+
* [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`
147+
* [Kernel] Fix a crash when a for-comprehension with `:uniq` was used inside another comprehension with `:uniq`
148+
* [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`
150+
* [Protocol] Warn on zero arity callbacks inside protocols
139151

140152
## v1.13.1 (2021-12-14)
141153

0 commit comments

Comments
 (0)