Current section

40 Versions

Jump to

Compare versions

3 files changed
+3 additions
-10 deletions
  @@ -1,7 +1,7 @@
1 1 {<<"links">>,
2 2 [{<<"GitHub">>,<<"https://github.com/RaymondLoranger/islands_guesses">>}]}.
3 3 {<<"name">>,<<"islands_guesses">>}.
4 - {<<"version">>,<<"0.1.27">>}.
4 + {<<"version">>,<<"0.1.28">>}.
5 5 {<<"description">>,
6 6 <<"A guesses struct and functions for the Game of Islands.">>}.
7 7 {<<"elixir">>,<<"~> 1.11">>}.
  @@ -25,10 +25,5 @@
25 25 {<<"app">>,<<"jason">>},
26 26 {<<"optional">>,false},
27 27 {<<"requirement">>,<<"~> 1.0">>},
28 - {<<"repository">>,<<"hexpm">>}],
29 - [{<<"name">>,<<"poison">>},
30 - {<<"app">>,<<"poison">>},
31 - {<<"optional">>,false},
32 - {<<"requirement">>,<<"~> 5.0">>},
33 28 {<<"repository">>,<<"hexpm">>}]]}.
34 29 {<<"build_tools">>,[<<"mix">>]}.
  @@ -14,7 +14,6 @@ defmodule Islands.Guesses do
14 14 alias __MODULE__
15 15 alias Islands.{Coord, Island}
16 16
17 - @derive [Poison.Encoder]
18 17 @derive Jason.Encoder
19 18 @enforce_keys [:hits, :misses]
20 19 defstruct [:hits, :misses]
  @@ -4,7 +4,7 @@ defmodule Islands.Guesses.MixProject do
4 4 def project do
5 5 [
6 6 app: :islands_guesses,
7 - version: "0.1.27",
7 + version: "0.1.28",
8 8 elixir: "~> 1.11",
9 9 start_permanent: Mix.env() == :prod,
10 10 name: "Islands Guesses",
  @@ -48,8 +48,7 @@ defmodule Islands.Guesses.MixProject do
48 48 {:ex_doc, "~> 0.22", only: :dev, runtime: false},
49 49 {:islands_coord, "~> 0.1"},
50 50 {:islands_island, "~> 0.1"},
51 - {:jason, "~> 1.0"},
52 - {:poison, "~> 5.0"}
51 + {:jason, "~> 1.0"}
53 52 ]
54 53 end
55 54 end