summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@plataformatec.com.br>2018-05-02 09:31:06 +0200
committerJosé Valim <jose.valim@plataformatec.com.br>2018-05-02 09:31:06 +0200
commit479e46fc7e2c5b9f187468c458a1b20dbf3217ce (patch)
tree985687d834a7c206efce35d41d3c5ae0ae6db00e
parent4f634bd244cd568dab6a98ff1edec6b3e23b7ce3 (diff)
downloadelixir-479e46fc7e2c5b9f187468c458a1b20dbf3217ce.tar.gz
Update CHANGELOG
-rw-r--r--CHANGELOG.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e9fb77cca..24cca77ba 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -123,6 +123,20 @@ Those improvements will help developers better understand the relationship betwe
Other improvements in Mix include better compiler diagnostics for editor integration, support for the `--slowest N` flag in `mix test` that shows the slowest tests in your suite, and a new `mix profile.eprof` task that provides time based profiling, complementing the existing `mix profile.cprof` (count based) and `mix profile.fprof` (flame based).
+## v1.6.5
+
+### 1. Bug fixes
+
+ * [Code] Preserve the user's choice in the formatter on parens call with next break fits
+ * [Code] Preserve the user's choice in the formatter on calls without parens when we have one argument per line
+ * [Code] Fix formatting when there is a tilde in the first element of a bitstring
+ * [Kernel] Support specsdiff flag on `__info__` spec clauses
+ * [Kernel] Do not exclude hygienic vars in `defguard`
+ * [Kernel.SpecialForms] Mark `for` comprehensions as generated to avoid dialyzer warnings
+ * [Macro] Make sure `Macro.to_string/2` emits valid quoted expressions
+ * [Task] Support `:infinity` timeout on `Task.yield_many/2`
+ * [Task.Supervisor] Do not crash spawning supervised tasks when the parent process is dead
+
## v1.6.4 (2018-03-16)
### 1. Bug fixes