Skip to content

Commit fa0de77

Browse files
author
José Valim
committed
Release v1.5.0-rc.0
1 parent 93d098d commit fa0de77

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG.md

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

135135
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.
136136

137-
## v1.5.0-dev
137+
## v1.5.0-rc.0 (2017-06-25)
138138

139139
### 1. Enhancements
140140

@@ -174,7 +174,6 @@ This release brings further improvements to Calendar types. It adds arithmetic a
174174
#### ExUnit
175175

176176
* [ExUnit] Show code snippet from test source file in case of test errors
177-
* [ExUnit] Show the value of variables used in an assertion
178177
* [ExUnit] Use `Exception.blame/3` when formatting test errors
179178
* [ExUnit] Make `assert_raise/2` fail if the underlying exception has a broken `message/1` implementation
180179
* [ExUnit] Add `start_supervised/2` and `stop_supervised/1` to ExUnit. Processes started by this function are automatically shut down when the test exits
@@ -205,6 +204,7 @@ This release brings further improvements to Calendar types. It adds arithmetic a
205204
* [Kernel] Support guards on anonymous functions of zero arity
206205
* [Kernel] Fix compilation of maps used as maps keys inside matches
207206
* [Record] Properly escape quoted expressions passed to `defrecord`
207+
* [Regex] Fix `inspect/2` for regexes with `/` terminator in them
208208
* [String] Consider Unicode non-characters valid according to the specification in `String.valid?/1`
209209

210210
#### ExUnit

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
REBAR ?= "$(CURDIR)/rebar"
22
PREFIX ?= /usr/local
33
SHARE_PREFIX ?= $(PREFIX)/share
4-
CANONICAL := master/
4+
CANONICAL := v1.5/
55
ELIXIRC := bin/elixirc --verbose --ignore-module-conflict
66
ERLC := erlc -I lib/elixir/include
77
ERL := erl -I lib/elixir/include -noshell -pa lib/elixir/ebin

VERSION

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

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-dev"},
3+
{vsn, "1.5.0-rc.0"},
44
{modules, [
55
elixir
66
]},

0 commit comments

Comments
 (0)