From 3b4aa3b2a6b88eb7f5b56ee03b6d1d6987dcfd35 Mon Sep 17 00:00:00 2001 From: Max Veytsman Date: Tue, 13 Dec 2022 15:47:16 -0500 Subject: [PATCH] Upgrade version of heroicons --- README.md | 2 +- assets/icons/mini/minus.svg | 2 +- lib/heroicons.ex | 4 ++-- lib/mix/tasks/heroicons/update.ex | 2 +- mix.exs | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e4422e6..a0c85b4 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ This library provides optimized svgs for each Heroicon packaged as a Phoenix Com Heroicons are designed by [Steve Schoger](https://twitter.com/steveschoger) -Current Heroicons Version: **2.0.12**. +Current Heroicons Version: **2.0.13**. ## Installation diff --git a/assets/icons/mini/minus.svg b/assets/icons/mini/minus.svg index cca96c6..6d8dd24 100644 --- a/assets/icons/mini/minus.svg +++ b/assets/icons/mini/minus.svg @@ -1,3 +1,3 @@ diff --git a/lib/heroicons.ex b/lib/heroicons.ex index 188bd9c..746a3ba 100644 --- a/lib/heroicons.ex +++ b/lib/heroicons.ex @@ -1,6 +1,6 @@ defmodule Heroicons do @moduledoc """ - Provides precompiled icon compiles from [heroicons.com v2.0.12](heroicons.com). + Provides precompiled icon compiles from [heroicons.com v2.0.13](heroicons.com). Heroicons are designed by [Steve Schoger](https://twitter.com/steveschoger) @@ -4652,7 +4652,7 @@ defmodule Heroicons do solid: ~S||, mini: - ~S|| + ~S|| } ) ) diff --git a/lib/mix/tasks/heroicons/update.ex b/lib/mix/tasks/heroicons/update.ex index 7eb1afd..742a447 100644 --- a/lib/mix/tasks/heroicons/update.ex +++ b/lib/mix/tasks/heroicons/update.ex @@ -3,7 +3,7 @@ defmodule Mix.Tasks.Heroicons.Update do @moduledoc false @shortdoc false - @vsn "2.0.12" + @vsn "2.0.13" @tmp_dir_name "heroicons-elixir" # Updates the icons in the assets/icons directory diff --git a/mix.exs b/mix.exs index 85fda94..3a113b3 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule HeroiconsElixir.MixProject do def project do [ app: :heroicons, - version: "0.5.1", + version: "0.5.2", elixir: "~> 1.11", start_permanent: Mix.env() == :prod, deps: deps(),