diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c8cb3a..4ca9137 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog for NimbleParsec +## v1.4.1 (2025-01-15) + +### Enhancements + + * Remove warnings on Elixir v1.18+ + ## v1.4.0 (2023-11-08) ### Enhancements diff --git a/mix.exs b/mix.exs index 3bb1cb6..926e55b 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule NimbleParsec.MixProject do use Mix.Project - @version "1.4.0" + @version "1.4.1" @url "https://github.com/dashbitco/nimble_parsec" def project do @@ -33,7 +33,7 @@ defmodule NimbleParsec.MixProject do ex_doc = Path.join(Mix.path_for(:escripts), "ex_doc") unless File.exists?(ex_doc) do - raise "cannot build docs because escript for ex_doc is not installed" + raise "cannot build docs because escript for ex_doc is not installed, run \"mix escript.install hex ex_doc\"" end args = ["NimbleParsec", @version, Mix.Project.compile_path()]