Current section
40 Versions
Jump to
Current section
40 Versions
Compare versions
2
files changed
+15
additions
-15
deletions
| @@ -1,7 +1,7 @@ | |
| 1 1 | {<<"app">>,<<"islands_guesses">>}. |
| 2 2 | {<<"build_tools">>,[<<"mix">>]}. |
| 3 3 | {<<"description">>,<<"Creates a guesses struct for the Game of Islands.">>}. |
| 4 | - {<<"elixir">>,<<"~> 1.10">>}. |
| 4 | + {<<"elixir">>,<<"~> 1.11">>}. |
| 5 5 | {<<"files">>, |
| 6 6 | [<<"lib">>,<<"lib/islands">>,<<"lib/islands/guesses.ex">>,<<"mix.exs">>, |
| 7 7 | <<"README.md">>]}. |
| @@ -25,14 +25,14 @@ | |
| 25 25 | {<<"optional">>,false}, |
| 26 26 | {<<"repository">>,<<"hexpm">>}, |
| 27 27 | {<<"requirement">>,<<"~> 0.1">>}], |
| 28 | - [{<<"app">>,<<"poison">>}, |
| 29 | - {<<"name">>,<<"poison">>}, |
| 30 | - {<<"optional">>,false}, |
| 31 | - {<<"repository">>,<<"hexpm">>}, |
| 32 | - {<<"requirement">>,<<"~> 3.1">>}], |
| 33 28 | [{<<"app">>,<<"jason">>}, |
| 34 29 | {<<"name">>,<<"jason">>}, |
| 35 30 | {<<"optional">>,false}, |
| 36 31 | {<<"repository">>,<<"hexpm">>}, |
| 37 | - {<<"requirement">>,<<"~> 1.0">>}]]}. |
| 38 | - {<<"version">>,<<"0.1.13">>}. |
| 32 | + {<<"requirement">>,<<"~> 1.0">>}], |
| 33 | + [{<<"app">>,<<"poison">>}, |
| 34 | + {<<"name">>,<<"poison">>}, |
| 35 | + {<<"optional">>,false}, |
| 36 | + {<<"repository">>,<<"hexpm">>}, |
| 37 | + {<<"requirement">>,<<"~> 4.0">>}]]}. |
| 38 | + {<<"version">>,<<"0.1.14">>}. |
| @@ -4,8 +4,8 @@ defmodule Islands.Guesses.MixProject do | |
| 4 4 | def project do |
| 5 5 | [ |
| 6 6 | app: :islands_guesses, |
| 7 | - version: "0.1.13", |
| 8 | - elixir: "~> 1.10", |
| 7 | + version: "0.1.14", |
| 8 | + elixir: "~> 1.11", |
| 9 9 | start_permanent: Mix.env() == :prod, |
| 10 10 | name: "Islands Guesses", |
| 11 11 | source_url: source_url(), |
| @@ -44,15 +44,15 @@ defmodule Islands.Guesses.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}, |
| 48 | + {:ex_doc, "~> 0.22", only: :dev, runtime: false}, |
| 51 49 | {:islands_config, "~> 0.1", runtime: false}, |
| 52 50 | {:islands_coord, "~> 0.1"}, |
| 53 51 | {:islands_island, "~> 0.1"}, |
| 54 | - {:poison, "~> 3.1"}, |
| 55 | - {:jason, "~> 1.0"} |
| 52 | + {:jason, "~> 1.0"}, |
| 53 | + {:mix_tasks, |
| 54 | + github: "RaymondLoranger/mix_tasks", only: :dev, runtime: false}, |
| 55 | + {:poison, "~> 4.0"} |
| 56 56 | ] |
| 57 57 | end |
| 58 58 | end |