Current section

29 Versions

Jump to

Compare versions

2 files changed
+8 additions
-8 deletions
  @@ -1,7 +1,7 @@
1 1 {<<"app">>,<<"islands_player_id">>}.
2 2 {<<"build_tools">>,[<<"mix">>]}.
3 3 {<<"description">>,<<"Defines the player ID type for the Game of Islands.">>}.
4 - {<<"elixir">>,<<"~> 1.10">>}.
4 + {<<"elixir">>,<<"~> 1.11">>}.
5 5 {<<"files">>,
6 6 [<<"lib">>,<<"lib/islands">>,<<"lib/islands/player_id.ex">>,<<"mix.exs">>,
7 7 <<"README.md">>]}.
  @@ -15,4 +15,4 @@
15 15 {<<"optional">>,false},
16 16 {<<"repository">>,<<"hexpm">>},
17 17 {<<"requirement">>,<<"~> 0.1">>}]]}.
18 - {<<"version">>,<<"0.1.4">>}.
18 + {<<"version">>,<<"0.1.5">>}.
  @@ -4,8 +4,8 @@ defmodule Islands.PlayerId.MixProject do
4 4 def project do
5 5 [
6 6 app: :islands_player_id,
7 - version: "0.1.4",
8 - elixir: "~> 1.10",
7 + version: "0.1.5",
8 + elixir: "~> 1.11",
9 9 start_permanent: Mix.env() == :prod,
10 10 name: "Islands Player ID",
11 11 source_url: source_url(),
  @@ -44,11 +44,11 @@ defmodule Islands.PlayerId.MixProject do
44 44 # Run "mix help deps" to learn about dependencies.
45 45 defp deps do
46 46 [
47 - {:mix_tasks,
48 - github: "RaymondLoranger/mix_tasks", only: :dev, runtime: false},
49 - {:ex_doc, "~> 0.22", only: :dev, runtime: false},
50 47 {:dialyxir, "~> 1.0", only: :dev, runtime: false},
51 - {:islands_config, "~> 0.1", runtime: false}
48 + {:ex_doc, "~> 0.22", only: :dev, runtime: false},
49 + {:islands_config, "~> 0.1", runtime: false},
50 + {:mix_tasks,
51 + github: "RaymondLoranger/mix_tasks", only: :dev, runtime: false}
52 52 ]
53 53 end
54 54 end