diff options
author | José Valim <jose.valim@plataformatec.com.br> | 2013-05-23 16:00:19 +0200 |
---|---|---|
committer | José Valim <jose.valim@plataformatec.com.br> | 2013-05-23 16:00:19 +0200 |
commit | 91e8e21242560f9a19910d8c1c6496482710ab69 (patch) | |
tree | 236d90d3a5a4a84537254aaabcb9edb421e3f4f6 | |
parent | d3013aa1d106f9ed9f14bc79099e4248a5ae3262 (diff) | |
download | elixir-0.9.0.tar.gz |
Release v0.9.0v0.9.0
-rw-r--r-- | CHANGELOG.md | 10 | ||||
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | src/elixir.app.src | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3466c7632..1ff71aacb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,15 @@ -# v0.9.0.dev +# v0.9.0 (2013-05-23) * enhancements + * [ExUnit] `ExUnit.CaptureIO` now accepts an input to be used during capture * [IEx] Add support for .iex files that are loaded during shell's boot process * [IEx] Add `import_file/1` helper -* bug fix - -* deprecations - * backwards incompatible changes + * [Enum] `Enum.Iterator` was replaced by the more composable and functional `Enumerable` protocol which supports reductions + * [File] `File.iterator/1` and `File.biniterator/1` have been removed in favor of the safe `File.iterator!/1` and `File.biniterator!/1` ones * [Kernel] Erlang R15 is no longer supported + * [Kernel] Elixir modules are now represented as `Elixir.ModuleName` (using `.` instead of `-` as separator) # v0.8.3 (2013-05-22) @@ -1 +1 @@ -0.8.3
\ No newline at end of file +0.9.0
\ No newline at end of file diff --git a/src/elixir.app.src b/src/elixir.app.src index 02e16758c..1007aa2b5 100644 --- a/src/elixir.app.src +++ b/src/elixir.app.src @@ -1,6 +1,6 @@ {application, elixir, [{description, "elixir"}, - {vsn, "0.8.3"}, + {vsn, "0.9.0"}, {modules, [ elixir ]}, |