Skip to content

Commit 0abeef0

Browse files
author
José Valim
committed
Update CHANGELOG
1 parent 7717087 commit 0abeef0

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* [Enum] Add `Enum.to_list/1`, `Enum.equal?/2`, `Enum.equal?/3`, `Enum.member?/2`, `Enum.uniq/2`, `Enum.max/1`, `Enum.max/2`, `Enum.min/1` and `Enum.min/2`
55
* [ExUnit] Add `ExUnit.CaptureIO` for IO capturing during tests
66
* [IEx] Support `ls` with colored output
7+
* [IEx] Add `#iex:break` to break incomplete expressions
78
* [Kernel] Add `Enum.at`, `Enum.fetch` and `Enum.fetch!`
89
* [Kernel] Add `String.to_integer` and `String.to_float`
910
* [Kernel] Add `Dict.take`, `Dict.drop`, `Dict.split`, `Dict.pop` and `Dict.fetch!`
@@ -26,18 +27,19 @@
2627
* [Kernel] Ensure Elixir won't trip on empty receive blocks
2728
* [Kernel] `String.slice` now returns an empty string when out of range by 1
2829
* [Mix] Generate manifest files after compilation to avoid depending on directory timestamps and to remove unused .beam files
29-
* [Regex] Fix badmatch with Regex.captures(%r/(.)/g, "cat")
30+
* [Regex] Fix badmatch with `Regex.captures(%r/(.)/g, "cat")`
3031
* [URI] Downcase host and scheme and URIs
3132

3233
* deprecations
3334
* [ExUnit] `assert left inlist right` is deprecated in favor of `assert left in right`
34-
* [Kernel] `List.member?/2` is deprecated in favor of `Enum.member?/2`
35+
* [IO] `IO.getb` is deprecated in favor of `IO.getn`
36+
* [List] `List.member?/2` is deprecated in favor of `Enum.member?/2`
3537
* [Kernel] `var_context` in quote was deprecated in favor of `context`
3638
* [Kernel] `Enum.at!` and `Dict.get!` is deprecated in favor of `Enum.fetch!` and `Dict.fetch!`
3739

3840
* backwards incompatible changes
39-
* [Kernel] `IO.gets`, `IO.getb` and friends now return binaries when reading from stdio
40-
* [Kernel] `List.Dict` was moved to `ListDict`
41+
* [Dict] `List.Dict` was moved to `ListDict`
42+
* [IO] `IO.gets`, `IO.getn` and friends now return binaries when reading from stdio
4143
* [Kernel] Precedence of `|>` has changed to lower to support constructs like `1..5 |> Enum.to_list`
4244
* [Mix] `mix escriptize` now receives arguments as binaries
4345

0 commit comments

Comments
 (0)