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
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,22 @@
1
1
# v0.12.1-dev
2
2
3
3
* Enhancements
4
+
*[ExUnit] Support `:include` and `:exclude` configuration options to filter which tests should run based on their tags. Those options are also supported via `mix test` as `--include` and `--exclude`
5
+
*[ExUnit] Allow doctests to match against `#MyModule<>`
4
6
5
7
* Bug fixes
8
+
*[CLI] Abort when a pattern given to elixirc does not match any file
9
+
*[Float] Fix `Float.parse/1` to handle numbers of the form "-0.x"
10
+
*[IEx] Improve error message for `IEx.Helpers.r` when module does not exist
11
+
*[Mix] Ensure `deps.get` updates origin if lock origin and dep origin do not match
6
12
*[Typespec] Fix conversion of unary ops from typespec format to ast
7
13
8
14
* Deprecations
9
15
*[Kernel] Do not leak clause heads. Previously, a variable defined in a case/receive head clauses would leak to the outer scope. This behaviour is deprecated and will be removed in the next release.
10
16
11
17
* Backwards incompatible changes
18
+
*[GenFSM] GenServer now stops on unknown event/sync_event requests
19
+
*[GenServer] GenServer now stops on unknown call/cast requests
12
20
*[Kernel] Change how `->` is represented in AST. Now each clause is represented by its own AST node which makes composition easier. See commit 51aef55 for more information.
0 commit comments