File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -207,7 +207,7 @@ defmodule Mix.Tasks.New do
207207
208208 ```elixir
209209 def deps do
210- [{:<%= @app %>, "~> 0.0.1 "}]
210+ [{:<%= @app %>, "~> 0.1.0 "}]
211211 end
212212 ```
213213
@@ -247,7 +247,7 @@ defmodule Mix.Tasks.New do
247247
248248 def project do
249249 [app: :<%= @app %>,
250- version: "0.0.1 ",
250+ version: "0.1.0 ",
251251 elixir: "~> <%= @version %>",
252252 build_embedded: Mix.env == :prod,
253253 start_permanent: Mix.env == :prod,
@@ -282,7 +282,7 @@ defmodule Mix.Tasks.New do
282282
283283 def project do
284284 [app: :<%= @app %>,
285- version: "0.0.1 ",
285+ version: "0.1.0 ",
286286 build_path: "../../_build",
287287 config_path: "../../config/config.exs",
288288 deps_path: "../../deps",
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ defmodule Mix.Tasks.NewTest do
99
1010 assert_file "hello_world/mix.exs" , fn ( file ) ->
1111 assert file =~ "app: :hello_world"
12- assert file =~ "version: \" 0.0.1 \" "
12+ assert file =~ "version: \" 0.1.0 \" "
1313 end
1414
1515 assert_file "hello_world/README.md" , ~r/ # HelloWorld\n /
@@ -31,7 +31,7 @@ defmodule Mix.Tasks.NewTest do
3131
3232 assert_file "hello_world/mix.exs" , fn ( file ) ->
3333 assert file =~ "app: :hello_world"
34- assert file =~ "version: \" 0.0.1 \" "
34+ assert file =~ "version: \" 0.1.0 \" "
3535 assert file =~ "mod: {HelloWorld, []}"
3636 end
3737
@@ -58,7 +58,7 @@ defmodule Mix.Tasks.NewTest do
5858
5959 assert_file "HELLO_WORLD/mix.exs" , fn ( file ) ->
6060 assert file =~ "app: :hello_world"
61- assert file =~ "version: \" 0.0.1 \" "
61+ assert file =~ "version: \" 0.1.0 \" "
6262 end
6363
6464 assert_file "HELLO_WORLD/README.md" , ~r/ # HelloWorld\n /
You can’t perform that action at this time.
0 commit comments