From a680309596c8cfa6ef8864ff0b43223303a8495d Mon Sep 17 00:00:00 2001 From: Christian Blavier Date: Thu, 26 Oct 2023 20:31:13 +0200 Subject: [PATCH] prepare 1.4.0 release --- CHANGELOG.md | 4 ++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8a5205..6e5f293 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 1.4.0 + +- `extend_class/3` can now take default classes as list (contribution by @dsrees 🙏) + # 1.3.0 - CSS prefix based replacement, deprecated in 1.1.0, has been removed. diff --git a/README.md b/README.md index d9c1542..b72e90c 100644 --- a/README.md +++ b/README.md @@ -159,7 +159,7 @@ Add the following to your `mix.exs`. ```elixir def deps do [ - {:phx_component_helpers, "~> 1.3.0"}, + {:phx_component_helpers, "~> 1.4.0"}, {:jason, "~> 1.0"} # only required if you want to use json encoding options ] end diff --git a/mix.exs b/mix.exs index 1868cc4..6b274df 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule PhxComponentHelpers.MixProject do def project do [ app: :phx_component_helpers, - version: "1.3.0", + version: "1.4.0", elixir: "~> 1.7", start_permanent: Mix.env() == :prod, deps: deps(),