Skip to content

Commit 5b3ef77

Browse files
committed
Update CHANGELOG
1 parent 64fca3c commit 5b3ef77

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ Elixir v1.12 has the additional of many functions across the standard library. T
126126
* [Range] Add `Range.new/3` and `Range.size/1`
127127
* [Regex] Add offset option to `Regex.scan/3` and `Regex.run/3`
128128
* [Registry] Support `:compression` on `Registry` tables
129+
* [Registry] Support `Registry.values/3` for reading values under a given key-pid pair
129130
* [Stream] Add `Stream.zip_with/2` and `Stream.zip_with/3`
130131
* [String] Add `:turkic` mode option to String case functions
131132
* [System] Add `System.trap_signal/3` and `System.untrap_signal/2`
@@ -170,7 +171,9 @@ Elixir v1.12 has the additional of many functions across the standard library. T
170171
* [Kernel] Do not crash when complex literals (binaries and maps) are used in guards
171172
* [Kernel] Properly parse keywords (such as `end`) followed by the `::` operator
172173
* [Macro] `Macro.decompose_call/1` now also consider tuples with more than 2 elements to not be valid calls
173-
* [Macro] Fix `Macro.underscore/1` for digit preceded by capitals: "FOO10" now becomes "foo10" instead of "fo_o10"
174+
* [Macro] Fix `Macro.to_string/1` double-escaping of escape characters in sigils
175+
* [Macro] Fix `Macro.underscore/1` on digits preceded by capitals: "FOO10" now becomes "foo10" instead of "fo_o10"
176+
* [Macro] Preserve underscores between digits on `Macro.underscore/1`
174177
* [OptionParser] Properly parse when numbers follow-up aliases, for example, `-ab3` is now parsed as `-a -b 3`
175178
* [Path] Fix `Path.relative_to/2` when referencing self
176179
* [Task] Ensure `Task.async_stream/2` with `ordered: false` discard results as they are emitted, instead of needlessly accumulating inside the stream manager

0 commit comments

Comments
 (0)