You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,12 +13,18 @@
13
13
*[IEx] Ensure functions in `Kernel.SpecialForms` and `IEx.Helpers` are also auto-completed
14
14
*[IEx] Ensure remote shells can be started with `--remsh`
15
15
*[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
17
19
18
20
* Soft deprecations (no warnings emitted)
19
21
20
22
* Deprecations
21
23
*[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`
0 commit comments