summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@plataformatec.com.br>2018-03-16 12:09:34 +0100
committerJosé Valim <jose.valim@plataformatec.com.br>2018-03-16 12:10:21 +0100
commitc107a2fe2623d11d132cdfeefbb7370abd44f85c (patch)
tree7cfce80527136c1b19b30c37cc7c0d5f33e6e16f
parent17853e63d89fb509d2de40c87f512ef609bfffe3 (diff)
downloadelixir-c107a2fe2623d11d132cdfeefbb7370abd44f85c.tar.gz
Release v1.6.4v1.6.4
-rw-r--r--CHANGELOG.md9
-rw-r--r--VERSION2
-rw-r--r--lib/elixir/src/elixir.app.src2
3 files changed, 11 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index dd83fc126..e9fb77cca 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -123,6 +123,15 @@ 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.4 (2018-03-16)
+
+### 1. Bug fixes
+
+#### Elixir
+
+ * [Code.Formatter] Do not double escape quoted keyword list identifiers
+ * [Kernel] Properly support `into: binary` in Erlang/OTP 20.3
+
## v1.6.3 (2018-03-09)
### 1. Enhancements
diff --git a/VERSION b/VERSION
index f5d2a5858..6463e95e8 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.6.3 \ No newline at end of file
+1.6.4 \ No newline at end of file
diff --git a/lib/elixir/src/elixir.app.src b/lib/elixir/src/elixir.app.src
index e055dbc5e..f338f5985 100644
--- a/lib/elixir/src/elixir.app.src
+++ b/lib/elixir/src/elixir.app.src
@@ -1,6 +1,6 @@
{application, elixir,
[{description, "elixir"},
- {vsn, "1.6.3"},
+ {vsn, "1.6.4"},
{modules, [
elixir
]},