From 8564d1f8b15d122e7ad5cad41e3a1d50f7cc0ab7 Mon Sep 17 00:00:00 2001 From: Angelika Tyborska Date: Thu, 18 Jul 2024 16:29:34 +0200 Subject: [PATCH] Release v2.4.0 --- CHANGELOG.md | 2 +- LICENSE.txt | 2 +- README.md | 2 +- mix.exs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d029f7..07c666b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v2.4.0 - 2024-07-18 - Added support for phoenix_html `v4`. You can also continue using phoenix_html `v3`. To replace `Phoenix.HTML.Form` input helpers removed in phoenix_html `v4`, new components `ui_raw_input` and `ui_raw_label` were added. - Added support for bitstyles `v5.0.0`. You can continue using bitstyles_phoenix with a lower bitstyles version, or migrate your codebase to bitstyles `v5.0.0`. diff --git a/LICENSE.txt b/LICENSE.txt index 67c21ad..1d3be83 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ ISC License (ISC) -Copyright (c) 2021-2023, Bitcrowd GmbH. +Copyright (c) 2021-2024, Bitcrowd GmbH. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. diff --git a/README.md b/README.md index df03eae..2039994 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ The package can be installed by adding `bitstyles_phoenix` to your list of depen ```elixir def deps do [ - {:bitstyles_phoenix, "~> 2.3"} + {:bitstyles_phoenix, "~> 2.4"} ] end ``` diff --git a/mix.exs b/mix.exs index 68f4459..98a58f3 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule BitstylesPhoenix.MixProject do def project do [ app: :bitstyles_phoenix, - version: "2.3.1", + version: "2.4.0", elixir: "~> 1.11", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,