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 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments