Skip to content

Commit 87710cd

Browse files
author
José Valim
committed
Release v1.3.4
1 parent 6e2c29c commit 87710cd

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
@@ -268,6 +268,20 @@ end
268268

269269
By restricting hierarchies in favor of named setups, it is straight-forward for the developer to glance at each describe block and know exactly the setup steps involved.
270270

271+
## v1.3.4 (2016-10-09)
272+
273+
### 1. Bug fixes
274+
275+
#### Elixir
276+
277+
* [Kernel] Ensure the compiler does not generate unecessary variable bindings inside case statements. This improves the code emitted and make sure "unused variable warnings" are not mistakenly silenced
278+
* [Kernel] Move `raise` checks to runtime to avoid crashing cover on Erlang 19.1
279+
* [Protocol] Do not emit warnings when using protocols on opaque types
280+
281+
#### ExUnit
282+
283+
* [ExUnit.CaptureLog] Flush Erlang's `:error_logger` before capturing to avoid mixed messages
284+
271285
## v1.3.3 (2016-09-17)
272286

273287
### 1. Enhancements

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.3
1+
1.3.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.3.3"},
3+
{vsn, "1.3.4"},
44
{modules, [
55
elixir
66
]},

0 commit comments

Comments
 (0)