From 755133d323a7f624d01b2f169a6f1bb0bfe3e5d6 Mon Sep 17 00:00:00 2001 From: Max Veytsman Date: Mon, 21 Feb 2022 12:02:04 -0500 Subject: [PATCH] Release 0.3.2 with heroicons 1.0.5 --- CHANGELOG.md | 6 ++++++ README.md | 4 +++- mix.exs | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cf426f..eb56f17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.3.2 (2022-02-21) + +### Enchancements + - Update heroicons to 1.0.5 (https://github.com/mveytsman/heroicons_elixir/pull/8) + + ## 0.3.1 (2022-02-15) ### Bug fixes diff --git a/README.md b/README.md index 0c51125..eff3f3c 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ Heroicons are designed by [Steve Schoger](https://twitter.com/steveschoger) +Current Heroicons Version: **1.0.5** + ## Installation Add Heroicons to your `mix.exs`: @@ -11,7 +13,7 @@ Add Heroicons to your `mix.exs`: ```elixir defp deps do [ - {:heroicons, "~> 0.3.1"} + {:heroicons, "~> 0.3.2"} ] end ``` diff --git a/mix.exs b/mix.exs index fce8b49..2a143ab 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule HeroiconsElixir.MixProject do def project do [ app: :heroicons, - version: "0.3.1", + version: "0.3.2", elixir: "~> 1.11", start_permanent: Mix.env() == :prod, deps: deps(),