Skip to content

Commit 17e8dbb

Browse files
author
José Valim
committed
Release v1.2.4
1 parent be7e656 commit 17e8dbb

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,24 @@ ask Mix to use Rebar 3 to compile it by passing the `manager: :rebar3` option.
8585
Once configured, Mix will prompt you to install Rebar 3 if it is not yet
8686
available.
8787

88+
## v1.2.4 (2016-04-01)
89+
90+
### 1. Enhancements
91+
92+
* [Mix] Add `:archives` configuration to `def project` that allows projects to list archive dependencies. `--no-archives-check` (as well as `--no-deps-check`) will disable the archive check. The `:archives` option is not checked for dependencies.
93+
* [Mix] Add `deps.precompile` task as hook
94+
* [Mix] Support `--include-children` in `mix deps.compile` option
95+
* [String] Update version of the Unicode database to 8.0.0
96+
97+
### 2. Bug fixes
98+
99+
* [Application] Ensure `spec/2` returns nil for unknown applications
100+
* [Integer] Fix a possible binary leak in `parse/1`
101+
* [Mix] Purge Erlang modules on recompilation
102+
* [String] Ensure `split/1` does not break on non-breakable whitespace
103+
* [String] Ensure NFC and NFD normalization pass all of Unicode 8.0.0 tests
104+
* [Version] Allow dots in build info for versions in `Version.parse/1`
105+
88106
## v1.2.3 (2016-02-21)
89107

90108
### 1. Enhancements

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.3
1+
1.2.4

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.2.3"},
3+
{vsn, "1.2.4"},
44
{modules, [
55
elixir
66
]},

0 commit comments

Comments
 (0)