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
## 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.

View File

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

View File

@ -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(),