Skip to content

Commit fae2067

Browse files
author
José Valim
committed
Update CHANGELOG
1 parent 6874eb7 commit fae2067

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,18 @@
1313
* [IEx] Ensure functions in `Kernel.SpecialForms` and `IEx.Helpers` are also auto-completed
1414
* [IEx] Ensure remote shells can be started with `--remsh`
1515
* [Kernel] Correctly parse unary/binary operators regardless of number of spaces
16-
* [Stream] Implement the Inspect protocol for Streams so we do not leak Stream representation
16+
* [Kernel] Ensure private functions are not exported
17+
* [Protocol] Do not expose protocol convention on `assert_impl!/2`
18+
* [Stream] Implement the Inspect protocol for Streams so we do not leak the Stream representation
1719

1820
* Soft deprecations (no warnings emitted)
1921

2022
* Deprecations
2123
* [Inspect] `Inspect.Algebra.pretty/2` is deprecated in favor of `Inspect.Algebra.format/2` that instead returns iodata. This function was used only by documentation examples and it is unlikely to affect actual code
24+
* [Kernel] Leading `0` for octals is deprecated in favor of `0o`
25+
* [Kernel] `0X` for hexadecimals is deprecated in favor of `0x`
26+
* [Kernel] `0B` for binaries is deprecated in favor of `0b`
27+
* [String] `\NNN`, `\NN` and `\N` for octals are deprecated inside string, sigils and chars in favor of hexadecimal entries with `\x`
2228

2329
* Backwards incompatible changes
2430

lib/elixir/lib/stream.ex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ defmodule Stream do
8989
returns an anonymous function may return a struct in future releases.
9090
"""
9191

92+
@doc false
9293
defstruct enum: nil, funs: [], accs: [], done: nil
9394

9495
@type acc :: any

0 commit comments

Comments
 (0)