Current section

40 Versions

Jump to

Compare versions

3 files changed
+4 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.32">>}.
4 + {<<"version">>,<<"0.1.33">>}.
5 5 {<<"description">>,
6 6 <<"A guesses struct and functions for the Game of Islands.">>}.
7 7 {<<"elixir">>,<<"~> 1.11">>}.
  @@ -20,10 +20,5 @@
20 20 {<<"app">>,<<"islands_island">>},
21 21 {<<"optional">>,false},
22 22 {<<"requirement">>,<<"~> 0.1">>},
23 - {<<"repository">>,<<"hexpm">>}],
24 - [{<<"name">>,<<"jason">>},
25 - {<<"app">>,<<"jason">>},
26 - {<<"optional">>,false},
27 - {<<"requirement">>,<<"~> 1.0">>},
28 23 {<<"repository">>,<<"hexpm">>}]]}.
29 24 {<<"build_tools">>,[<<"mix">>]}.
  @@ -14,7 +14,7 @@ defmodule Islands.Guesses do
14 14 alias __MODULE__
15 15 alias Islands.{Coord, Island}
16 16
17 - @derive Jason.Encoder
17 + @derive JSON.Encoder
18 18 @enforce_keys [:hits, :misses]
19 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.32",
7 + version: "0.1.33",
8 8 elixir: "~> 1.11",
9 9 start_permanent: Mix.env() == :prod,
10 10 name: "Islands Guesses",
  @@ -47,8 +47,7 @@ defmodule Islands.Guesses.MixProject do
47 47 {:dialyxir, "~> 1.0", only: :dev, runtime: false},
48 48 {:ex_doc, "~> 0.22", only: :dev, runtime: false},
49 49 {:islands_coord, "~> 0.1"},
50 - {:islands_island, "~> 0.1"},
51 - {:jason, "~> 1.0"}
50 + {:islands_island, "~> 0.1"}
52 51 ]
53 52 end
54 53 end