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
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,9 @@
1
1
# v0.13.2-dev
2
2
3
3
* Enhancements
4
+
*[Application] Add an Application module with common functions to work with OTP applications
5
+
*[Exception] Add `Exception.message/1`, `Exception.format_banner/1`, `Exception.format_exit/1` and `Exception.format/1`
6
+
*[File] Add `File.ln_s/1`
4
7
*[Mix]`mix deps.clean` now works accross environments
5
8
*[Mix] Support line numbers in `mix test`, e.g. test/some/file_test.exs:12
6
9
*[Mix] Use `@file` attributes to detect dependencies in between `.ex` and external files. This means changing an `.eex` file will no longer recompile the whole project only the files that depend directly on it
@@ -11,11 +14,15 @@
11
14
*[IEx] Exit signals now exits the IEx evaluator and a new one is spawned on its place
12
15
*[IEx] Ensure we don't prune too much stacktrace when reporting failures
13
16
*[IEx] Fix an issue where `iex.bat` on Windows was not passing the proper parameters forward
17
+
*[Kernel] Ensure modules defined on root respect defined aliases
14
18
*[Kernel] Do not wrap single lists in `:__block__`
15
19
*[Kernel] Ensure emitted beam code works nicely with dialyzer
16
20
*[Kernel] Do not allow a module named `Elixir` to be defined
21
+
*[Kernel] Create remote funs even if mod is a variable in capture `&mod.fun/arity`
22
+
*[Kernel] Improve compiler message when duplicated modules are detected
17
23
*[Mix] Generate `.gitignore` for `--umbrella` projects
18
24
*[Mix] Verify if a git dependency in deps has a proper git checkout and clean it automatically when it doesn't
25
+
*[Mix] Ensure `mix test` works with `IEx.pry/0`
19
26
*[System] Convert remaining functions in System to rely on char data
0 commit comments