Skip to content

Commit a3d88dc

Browse files
author
José Valim
committed
Release v1.2.1
1 parent 58a6291 commit a3d88dc

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,20 @@ 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.1 (2016-01-14)
89+
90+
### 1. Enhancements
91+
92+
* [IEx] Support remote pids/ports with IEx helper `i/1`
93+
* [Protocol] Warn when `defimpl` is called for a consolidated protocol
94+
95+
### 2. Bug fixes
96+
97+
* [ExUnit] Ensure `assert` macros can be used from quoted code
98+
* [ExUnit] Do not warn in match assertion if variable is reused in pattern
99+
* [Macro] Fix a bug in `Macro.to_string/1` where a remote function could be accidentally interpreted as a sigil
100+
* [Mix] Ensure dependencies are properly skipped when `--only` option is given to `mix deps.get`
101+
88102
## v1.2.0 (2016-01-01)
89103

90104
### 1. Enhancements

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.0
1+
1.2.1

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

0 commit comments

Comments
 (0)