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
207
207
208
208
```elixir
209
209
def deps do
210
- [{:<%= @app %>, "~> 0.0.1 "}]
210
+ [{:<%= @app %>, "~> 0.1.0 "}]
211
211
end
212
212
```
213
213
@@ -247,7 +247,7 @@ defmodule Mix.Tasks.New do
247
247
248
248
def project do
249
249
[app: :<%= @app %>,
250
- version: "0.0.1 ",
250
+ version: "0.1.0 ",
251
251
elixir: "~> <%= @version %>",
252
252
build_embedded: Mix.env == :prod,
253
253
start_permanent: Mix.env == :prod,
@@ -282,7 +282,7 @@ defmodule Mix.Tasks.New do
282
282
283
283
def project do
284
284
[app: :<%= @app %>,
285
- version: "0.0.1 ",
285
+ version: "0.1.0 ",
286
286
build_path: "../../_build",
287
287
config_path: "../../config/config.exs",
288
288
deps_path: "../../deps",
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ defmodule Mix.Tasks.NewTest do
9
9
10
10
assert_file "hello_world/mix.exs" , fn ( file ) ->
11
11
assert file =~ "app: :hello_world"
12
- assert file =~ "version: \" 0.0.1 \" "
12
+ assert file =~ "version: \" 0.1.0 \" "
13
13
end
14
14
15
15
assert_file "hello_world/README.md" , ~r/ # HelloWorld\n /
@@ -31,7 +31,7 @@ defmodule Mix.Tasks.NewTest do
31
31
32
32
assert_file "hello_world/mix.exs" , fn ( file ) ->
33
33
assert file =~ "app: :hello_world"
34
- assert file =~ "version: \" 0.0.1 \" "
34
+ assert file =~ "version: \" 0.1.0 \" "
35
35
assert file =~ "mod: {HelloWorld, []}"
36
36
end
37
37
@@ -58,7 +58,7 @@ defmodule Mix.Tasks.NewTest do
58
58
59
59
assert_file "HELLO_WORLD/mix.exs" , fn ( file ) ->
60
60
assert file =~ "app: :hello_world"
61
- assert file =~ "version: \" 0.0.1 \" "
61
+ assert file =~ "version: \" 0.1.0 \" "
62
62
end
63
63
64
64
assert_file "HELLO_WORLD/README.md" , ~r/ # HelloWorld\n /
You can’t perform that action at this time.
0 commit comments