Skip to content

Commit 704fb95

Browse files
author
José Valim
committed
Release v1.5.0-rc.1
1 parent c49a598 commit 704fb95

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ Overall, using `@impl` has the following advantages:
156156

157157
This release brings further improvements to Calendar types. It adds arithmetic and others functions to `Time`, `Date`, `NaiveDateTime` and `Datetime` as well as conversion between different calendars.
158158

159-
## v1.5.0-rc.1 (2017-07-04)
159+
## v1.5.0-rc.1 (2017-07-12)
160160

161161
### 1. Enhancements
162162

@@ -165,7 +165,7 @@ This release brings further improvements to Calendar types. It adds arithmetic a
165165
* [Base] Optimise Base encode/decode
166166
* [Calendar] Implement Inspect for DateTime with Calendar.ISO
167167
* [Enum] Introduce `Enum.chunk_every/2` and `Enum.chunk_every/4` with a more explicit API than `Enum.chunk/2` and `Enum.chunk/4`
168-
* [Kernel] Cache the AST on definitions. This speeds up the compilation time from 10% to 15% measured across different projects.
168+
* [Kernel] Cache the AST on definitions. This speeds up the compilation time from 10% to 15% measured across different projects
169169
* [Stream] Introduce `Stream.chunk_every/2` and `Stream.chunk_every/4` with a more explicit API than `Stream.chunk/2` and `Stream.chunk/4`
170170

171171
#### IEx
@@ -185,6 +185,8 @@ This release brings further improvements to Calendar types. It adds arithmetic a
185185
* [Inspect] Do not use colors when inspecting for error messages
186186
* [Kernel] Improve error message on invalid patterns and guards
187187
* [Kernel] Do not warn false positives about unused variables on rescue (regression)
188+
* [Kernel] Ensure `do` clause in `with` is tail call optimizable
189+
* [Protocol] Do not lose source compile info on protocol consolidation
188190
* [Stream] Fix stream cycle over empty enumerable
189191
* [Stream] Rename `Stream.chunk_by/4` to `Stream.chunk_while/4` (`chunk_by/4` was only part of 1.5.0-rc.0) (regression)
190192
* [StringIO] Fix encoding and performance issues in `StringIO.get_until`

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.0-rc.0
1+
1.5.0-rc.1

src/elixir.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, elixir,
22
[{description, "elixir"},
3-
{vsn, "1.5.0-rc.0"},
3+
{vsn, "1.5.0-rc.1"},
44
{modules, [
55
elixir
66
]},

0 commit comments

Comments
 (0)