diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e44094..6e33ac7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,11 @@ # Changelog +## 0.4.1 +### Enchancements +- Further optimize the JIT Phoenix Component compiler + ## 0.4.0 ### Enchancements - - Update to Heroicons 2 (https://github.com/mveytsman/heroicons_elixir/pull/12) - Add update task and generate optimized version of icons (https://github.com/mveytsman/heroicons_elixir/pull/13) - Optimize compile times by no longer reading every icon during compliation. diff --git a/README.md b/README.md index b1620dd..22a8dd0 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Add Heroicons to your `mix.exs`: ```elixir defp deps do [ - {:heroicons, "~> 0.4.0"} + {:heroicons, "~> 0.4.1"} ] end ``` diff --git a/mix.exs b/mix.exs index 076fb23..9cdf858 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule HeroiconsElixir.MixProject do def project do [ app: :heroicons, - version: "0.4.0", + version: "0.4.1", elixir: "~> 1.11", start_permanent: Mix.env() == :prod, deps: deps(),