Skip to content

Commit 6004a36

Browse files
author
José Valim
committed
Update CHANGELOG
1 parent 22627c4 commit 6004a36

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
# v0.9.2.dev
22

33
* enhancements
4+
* [ExUnit] `capture_io` now captures prompt by default
45
* [Mix] Automatically import git dependencies from Rebar
6+
* [Mix] Support for dependencies directly from the umbrella application
57
* [Regex] Add `Regex.escape`
8+
* [String] Add `String.contains?`
9+
* [URI] Implement `Binary.Chars` (aka `to_binary`) for `URI.Info`
610

711
* bug fix
12+
* [HashDict] Ensure HashDict uses exact match throughout its implementation
813
* [IEx] Do not interpret ANSI codes in IEx results
9-
* [Kernel] Don't ignore :nil when dispatching protocols to avoid infinite loops
14+
* [IEx] Ensure --cookie is set before accessing remote shell
15+
* [Kernel] Do not ignore nil when dispatching protocols to avoid infinite loops
1016
* [Mix] Fix usage of shell expressions in `Mix.Shell.cmd`
1117
* [Mix] Start the application by default on escripts
1218

lib/mix/lib/mix/tasks/new.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ defmodule Mix.Tasks.New do
143143
144144
# Returns the list of dependencies in the format:
145145
# { :foobar, "0.1", git: "https://github.com/elixir-lang/foobar.git" }
146-
# Note that these dependencies can not be accessed by child applications
146+
# These dependencies are not accessible from child applications
147147
defp deps do
148148
[]
149149
end

0 commit comments

Comments
 (0)