Prep for 4.0.1 release
This commit is contained in:
@ -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.
|
||||||
|
@ -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
|
||||||
```
|
```
|
||||||
|
2
mix.exs
2
mix.exs
@ -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(),
|
||||||
|
Reference in New Issue
Block a user