Skip to content

Commit 0caa757

Browse files
author
José Valim
committed
Release v1.3.3
1 parent 87da507 commit 0caa757

File tree

4 files changed

+42
-3
lines changed

4 files changed

+42
-3
lines changed

CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,45 @@ 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.3 (2016-09-17)
272+
273+
### 1. Enhancements
274+
275+
#### Elixir
276+
277+
* [DateTime] Support negative integer in `DateTime.from_unix/2`
278+
* [Kernel.LexicalTracker] Do not consider remote typespecs as a compile-time dependency
279+
* [Kernel.ParallelCompiler] Do not emit deadlock messages when the process is waiting on itself
280+
* [Kernel.Typespec] Mark struct update syntax as generated to avoid false positives from dialyzer
281+
282+
#### ExUnit
283+
284+
* [ExUnit] Make ExUnit server timeout configurable
285+
286+
#### Logger
287+
288+
* [Logger] Use `:ansi_color` if one is available in metadata
289+
290+
#### Mix
291+
292+
* [Mix] Add support for the `:sparse` option in `Mix.SCM.Git`
293+
* [Mix] Skip dependendency loading if `MIX_NO_DEPS` is set to `1`
294+
295+
### 2. Bug fixes
296+
297+
#### Elixir
298+
299+
* [System] Use `NUL` instead of `/dev/null` on Windows when building `System.build_info`
300+
301+
#### IEx
302+
303+
* [IEx.Autocomplete] Resolves issue with autocompletion on structs not working
304+
305+
#### Mix
306+
307+
* [Mix] Also store external resources that are not part of the current working directory in compilation manifest
308+
* [Mix] Always include the compiled file source in manifests
309+
271310
## v1.3.2 (2016-07-15)
272311

273312
### 1. Enhancements

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.2
1+
1.3.3

lib/elixir/lib/enum.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ defmodule Enum do
861861

862862
def find_index(enumerable, fun) do
863863
res =
864-
Enumerable.reduce(enumerable, {:cont, {:not_found, 0}}, fn(entry, {status, index}) ->
864+
Enumerable.reduce(enumerable, {:cont, {:not_found, 0}}, fn(entry, {_status, index}) ->
865865
if fun.(entry), do: {:halt, {:found, index}}, else: {:cont, {:not_found, index + 1}}
866866
end)
867867

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

0 commit comments

Comments
 (0)