Skip to content

Commit

Permalink
Release v1.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
José Valim committed May 7, 2018
1 parent f4b6375 commit a9f1be0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Expand Up @@ -123,7 +123,9 @@ 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
## v1.6.5 (2018-05-07)

This release supports Erlang/OTP 21.0-rc by removing all warnings and by properly redirecting logger output. Note it is not guaranteed it will support Erlang/OTP 21.0 final.

### 1. Bug fixes

Expand All @@ -136,6 +138,7 @@ Other improvements in Mix include better compiler diagnostics for editor integra
* [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
* [URI] Fix parsing of URIs with trailing `?`

## v1.6.4 (2018-03-16)

Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
1.6.4
1.6.5
2 changes: 1 addition & 1 deletion lib/elixir/pages/Compatibility and Deprecations.md
Expand Up @@ -12,7 +12,7 @@ Elixir version | Supported Erlang/OTP versions
1.3 | 18 - 19
1.4 | 18 - 19 (and OTP 20 from v1.4.5)
1.5 | 18 - 20
1.6 | 19 - 20
1.6 | 19 - 20 (and OTP 21 from v1.6.5)

While Elixir often adds compatibility to new Erlang versions on released branches, such as support for OTP 20 in v1.4.5, those releases usually contain the minimum changes for Elixir to run without errors. Only the next minor release, in this case v1.5.0, does effectively leverage the new features provided by the latest Erlang release.

Expand Down
2 changes: 1 addition & 1 deletion lib/elixir/src/elixir.app.src
@@ -1,6 +1,6 @@
{application, elixir,
[{description, "elixir"},
{vsn, "1.6.4"},
{vsn, "1.6.5"},
{modules, [
elixir
]},
Expand Down

0 comments on commit a9f1be0

Please sign in to comment.