File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
# v0.9.2.dev
2
2
3
3
* enhancements
4
+ * [ ExUnit] ` capture_io ` now captures prompt by default
4
5
* [ Mix] Automatically import git dependencies from Rebar
6
+ * [ Mix] Support for dependencies directly from the umbrella application
5
7
* [ Regex] Add ` Regex.escape `
8
+ * [ String] Add ` String.contains? `
9
+ * [ URI] Implement ` Binary.Chars ` (aka ` to_binary ` ) for ` URI.Info `
6
10
7
11
* bug fix
12
+ * [ HashDict] Ensure HashDict uses exact match throughout its implementation
8
13
* [ 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
10
16
* [ Mix] Fix usage of shell expressions in ` Mix.Shell.cmd `
11
17
* [ Mix] Start the application by default on escripts
12
18
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ defmodule Mix.Tasks.New do
143
143
144
144
# Returns the list of dependencies in the format:
145
145
# { :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
147
147
defp deps do
148
148
[]
149
149
end
You can’t perform that action at this time.
0 commit comments