diff --git a/README.md b/README.md index e535885..e722a0b 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,9 @@ iex> Domainatrex.parse("blog.someone.id.au") ## Changelog +### 2.1.4 +- Pin a version of `nimble_parsec` to fix a compilation error on `makeup` (`makeup` has fixed this downstream, so when `ex_doc` updates `makeup`, this will no longer be required) + ### 2.1.3 - Merge a couple of minor PRs diff --git a/mix.exs b/mix.exs index cf2cf24..0681b4b 100644 --- a/mix.exs +++ b/mix.exs @@ -3,7 +3,7 @@ defmodule Domainatrex.Mixfile do def project do [app: :domainatrex, - version: "2.1.3", + version: "2.1.4", elixir: "~> 1.3", test_coverage: [tool: ExCoveralls], build_embedded: Mix.env == :prod, @@ -35,7 +35,7 @@ defmodule Domainatrex.Mixfile do {:ex_doc, "~> 0.19", only: [:dev, :docs]}, {:excoveralls, "~> 0.10.3", only: [:dev, :test]}, {:inch_ex, "~> 1.0", only: [:dev, :docs]}, - {:nimble_parsec, "~> 0.4.0", only: [:dev, :docs]} + {:nimble_parsec, "~> 0.4.0", only: [:dev, :docs]} ] end