Skip to content

Commit a9f1be0

Browse files
author
José Valim
committed
Release v1.6.5
1 parent f4b6375 commit a9f1be0

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,9 @@ Those improvements will help developers better understand the relationship betwe
123123

124124
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).
125125

126-
## v1.6.5
126+
## v1.6.5 (2018-05-07)
127+
128+
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.
127129

128130
### 1. Bug fixes
129131

@@ -136,6 +138,7 @@ Other improvements in Mix include better compiler diagnostics for editor integra
136138
* [Macro] Make sure `Macro.to_string/2` emits valid quoted expressions
137139
* [Task] Support `:infinity` timeout on `Task.yield_many/2`
138140
* [Task.Supervisor] Do not crash spawning supervised tasks when the parent process is dead
141+
* [URI] Fix parsing of URIs with trailing `?`
139142

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

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.6.4
1+
1.6.5

lib/elixir/pages/Compatibility and Deprecations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Elixir version | Supported Erlang/OTP versions
1212
1.3 | 18 - 19
1313
1.4 | 18 - 19 (and OTP 20 from v1.4.5)
1414
1.5 | 18 - 20
15-
1.6 | 19 - 20
15+
1.6 | 19 - 20 (and OTP 21 from v1.6.5)
1616

1717
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.
1818

lib/elixir/src/elixir.app.src

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, elixir,
22
[{description, "elixir"},
3-
{vsn, "1.6.4"},
3+
{vsn, "1.6.5"},
44
{modules, [
55
elixir
66
]},

0 commit comments

Comments
 (0)