Skip to content

Commit 1885841

Browse files
author
José Valim
committed
Update CHANGELOG
1 parent 80a466a commit 1885841

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
# v0.11.2-dev
22

33
* Enhancements
4-
5-
* Bug fixes
6-
7-
* Deprecations
4+
* [Mix] Add `mix iex` that redirects users to the proper `iex -S mix` command
5+
* [Mix] Support `build_per_environment: true` in project configuration that manages a separete build per environment, useful when you have per-environment behaviour/compilation
86

97
* Backwards incompatible changes
10-
8+
* [Mix] Mix now compiles files to `_build`. Projects should update just fine, however documentation and books may want to update to the latest information
119

1210
# v0.11.1 (2013-11-07)
1311

lib/mix/lib/mix/tasks/iex.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule Mix.Tasks.Iex do
44
@hidden true
55

66
def run(_) do
7-
raise Mix.Error, message: "Cannot start IEx after the VM was booted, " <>
8-
"to use IEx with Mix, please run: iex -S mix"
7+
raise Mix.Error, message: "Cannot start IEx after the VM was booted. " <>
8+
"To use IEx with Mix, please run: iex -S mix"
99
end
1010
end

lib/mix/test/mix/tasks/iex_test.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ defmodule Mix.Tasks.IexTest do
55

66
test "iex raises error message about correct usage" do
77
in_fixture "only_mixfile", fn ->
8-
error_message = "Cannot start IEx after the VM was booted, " <>
9-
"to use IEx with Mix, please run: iex -S mix"
8+
error_message = "Cannot start IEx after the VM was booted. " <>
9+
"To use IEx with Mix, please run: iex -S mix"
1010
assert_raise Mix.Error, error_message, fn ->
1111
Mix.Tasks.Iex.run []
1212
end

0 commit comments

Comments
 (0)