Current section

40 Versions

Jump to

Compare versions

4 files changed
+4 additions
-4 deletions
  @@ -2,7 +2,7 @@
2 2
3 3 A guesses struct and functions for the _Game of Islands_.
4 4
5 - ##### Based on the book [Functional Web Development](https://pragprog.com/book/lhelph/functional-web-development-with-elixir-otp-and-phoenix) by Lance Halvorsen.
5 + ##### Based on the book [Functional Web Development](https://pragprog.com/titles/lhelph/functional-web-development-with-elixir-otp-and-phoenix/) by Lance Halvorsen.
6 6
7 7 ## Installation
  @@ -31,4 +31,4 @@
31 31 {<<"optional">>,false},
32 32 {<<"repository">>,<<"hexpm">>},
33 33 {<<"requirement">>,<<"~> 5.0">>}]]}.
34 - {<<"version">>,<<"0.1.25">>}.
34 + {<<"version">>,<<"0.1.26">>}.
  @@ -8,7 +8,7 @@ defmodule Islands.Guesses do
8 8 The guesses struct contains the fields `hits` and `misses` representing the
9 9 guesses of an opponent in the _Game of Islands_.
10 10
11 - ##### Based on the book [Functional Web Development](https://pragprog.com/book/lhelph/functional-web-development-with-elixir-otp-and-phoenix) by Lance Halvorsen.
11 + ##### Based on the book [Functional Web Development](https://pragprog.com/titles/lhelph/functional-web-development-with-elixir-otp-and-phoenix/) by Lance Halvorsen.
12 12 """
13 13
14 14 alias __MODULE__
  @@ -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.25",
7 + version: "0.1.26",
8 8 elixir: "~> 1.11",
9 9 start_permanent: Mix.env() == :prod,
10 10 name: "Islands Guesses",