|
4 | 4 | * [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`
|
5 | 5 | * [ExUnit] Add `ExUnit.CaptureIO` for IO capturing during tests
|
6 | 6 | * [IEx] Support `ls` with colored output
|
| 7 | + * [IEx] Add `#iex:break` to break incomplete expressions |
7 | 8 | * [Kernel] Add `Enum.at`, `Enum.fetch` and `Enum.fetch!`
|
8 | 9 | * [Kernel] Add `String.to_integer` and `String.to_float`
|
9 | 10 | * [Kernel] Add `Dict.take`, `Dict.drop`, `Dict.split`, `Dict.pop` and `Dict.fetch!`
|
|
26 | 27 | * [Kernel] Ensure Elixir won't trip on empty receive blocks
|
27 | 28 | * [Kernel] `String.slice` now returns an empty string when out of range by 1
|
28 | 29 | * [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")` |
30 | 31 | * [URI] Downcase host and scheme and URIs
|
31 | 32 |
|
32 | 33 | * deprecations
|
33 | 34 | * [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` |
35 | 37 | * [Kernel] `var_context` in quote was deprecated in favor of `context`
|
36 | 38 | * [Kernel] `Enum.at!` and `Dict.get!` is deprecated in favor of `Enum.fetch!` and `Dict.fetch!`
|
37 | 39 |
|
38 | 40 | * 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 |
41 | 43 | * [Kernel] Precedence of `|>` has changed to lower to support constructs like `1..5 |> Enum.to_list`
|
42 | 44 | * [Mix] `mix escriptize` now receives arguments as binaries
|
43 | 45 |
|
|
0 commit comments