summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md10
-rw-r--r--VERSION2
-rw-r--r--src/elixir.app.src2
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)
diff --git a/VERSION b/VERSION
index fab77af2a..899f24fc7 100644
--- a/VERSION
+++ b/VERSION
@@ -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
]},