diff options
author | José Valim <jose.valim@plataformatec.com.br> | 2018-03-16 12:09:34 +0100 |
---|---|---|
committer | José Valim <jose.valim@plataformatec.com.br> | 2018-03-16 12:10:21 +0100 |
commit | c107a2fe2623d11d132cdfeefbb7370abd44f85c (patch) | |
tree | 7cfce80527136c1b19b30c37cc7c0d5f33e6e16f | |
parent | 17853e63d89fb509d2de40c87f512ef609bfffe3 (diff) | |
download | elixir-c107a2fe2623d11d132cdfeefbb7370abd44f85c.tar.gz |
Release v1.6.4v1.6.4
-rw-r--r-- | CHANGELOG.md | 9 | ||||
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | lib/elixir/src/elixir.app.src | 2 |
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 @@ -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 ]}, |