Skip to content

Commit 4638831

Browse files
author
José Valim
committed
Update CHANGELOG
1 parent 60b2928 commit 4638831

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,34 @@
22

33
* Enhancements
44
* [Enum] Add `Enum.take_every/2`
5+
* [IEx] IEx now respects signals sent from the Ctrl+G menu
56
* [Kernel] Allow documentation for types with `@typedoc`
7+
* [Stream] Add `Stream.unfold/1`
68

79
* Bug fixes
8-
* [IEx] Fix regression when using `:error_messages` with IEx
9-
* [Kernel] Fixed handling of multiple heredocs on the same line
10+
* [Dict] Fix a bug when a HashDict was marked as equal when one was actually a subset of the other
11+
* [EEx] Solve issue where `do` blocks inside templates were not properly aligned
12+
* [ExUnit] Improve checks and have better error reports on poorly aligned doctests
13+
* [Kernel] Fix handling of multiple heredocs on the same line
14+
* [Kernel] Provide better error messages for match, guard and quoting errors
15+
* [Kernel] Make `Kernel.raise/2` a macro to avoid messing up stacktraces
16+
* [Kernel] Ensure `&()` works on quoted blocks with only one expression
17+
* [Mix] Address an issue where a dependency was not compiled in the proper order when specified in different projects
18+
* [Mix] Ensure `compile: false` is a valid mechanism for disabling the compilation of dependencies
1019
* [Regex] Fix bug on `Regex.scan/3` when capturing groups and the regex has no groups
20+
* [String] Fix a bug with `String.split/2` when given an empty pattern
21+
* [Typespec] Guarantee typespecs error reports point to the proper line
1122

1223
* Deprecations
24+
* [Kernel] The previous partial application syntax (without the `&` operator) has now been deprecated
25+
* [Regex] `Regex.captures/3` is deprecated in favor of `Regex.named_captures/3`
26+
* [String] `String.valid_codepoint?/1` is deprecated in favor of pattern matching with `<<_ :: utf8 >>`
1327

1428
* Backwards incompatible changes
29+
* [IEx] The `r/0` helper has been removed as it caused surprising behaviour when many modules with dependencies were accumulated
1530
* [Mix] `Mix.Version` was renamed to `Version`
1631
* [Mix] `File.IteratorError` was renamed to `IO.StreamError`
32+
* [Mix] `mix new` now defaults to the `--sup` option, use `--bare` to get the previous behaviour
1733

1834
# v0.10.2 (2013-09-03)
1935

0 commit comments

Comments
 (0)