Skip to content

Commit 91e8e21

Browse files
author
José Valim
committed
Release v0.9.0
1 parent d3013aa commit 91e8e21

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

CHANGELOG.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
# v0.9.0.dev
1+
# v0.9.0 (2013-05-23)
22

33
* enhancements
4+
* [ExUnit] `ExUnit.CaptureIO` now accepts an input to be used during capture
45
* [IEx] Add support for .iex files that are loaded during shell's boot process
56
* [IEx] Add `import_file/1` helper
67

7-
* bug fix
8-
9-
* deprecations
10-
118
* backwards incompatible changes
9+
* [Enum] `Enum.Iterator` was replaced by the more composable and functional `Enumerable` protocol which supports reductions
10+
* [File] `File.iterator/1` and `File.biniterator/1` have been removed in favor of the safe `File.iterator!/1` and `File.biniterator!/1` ones
1211
* [Kernel] Erlang R15 is no longer supported
12+
* [Kernel] Elixir modules are now represented as `Elixir.ModuleName` (using `.` instead of `-` as separator)
1313

1414
# v0.8.3 (2013-05-22)
1515

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.8.3
1+
0.9.0

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

0 commit comments

Comments
 (0)