Prep for 4.0.1 release

This commit is contained in:
Max Veytsman
2022-09-02 21:04:12 -04:00
parent 0726bf6781
commit 3052d67e5e
3 changed files with 6 additions and 3 deletions

View File

@ -1,8 +1,11 @@
# Changelog # Changelog
## 0.4.1
### Enchancements
- Further optimize the JIT Phoenix Component compiler
## 0.4.0 ## 0.4.0
### Enchancements ### Enchancements
- Update to Heroicons 2 (https://github.com/mveytsman/heroicons_elixir/pull/12) - 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) - 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. - Optimize compile times by no longer reading every icon during compliation.

View File

@ -17,7 +17,7 @@ Add Heroicons to your `mix.exs`:
```elixir ```elixir
defp deps do defp deps do
[ [
{:heroicons, "~> 0.4.0"} {:heroicons, "~> 0.4.1"}
] ]
end end
``` ```

View File

@ -4,7 +4,7 @@ defmodule HeroiconsElixir.MixProject do
def project do def project do
[ [
app: :heroicons, app: :heroicons,
version: "0.4.0", version: "0.4.1",
elixir: "~> 1.11", elixir: "~> 1.11",
start_permanent: Mix.env() == :prod, start_permanent: Mix.env() == :prod,
deps: deps(), deps: deps(),