diff --git a/CHANGELOG.md b/CHANGELOG.md index 2726af0..4e4bf3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## v2.5.0 - 2024-09-25 + - Switched bitstyles version comparisons from string comparisons to tuple comparisons, which will ensure correct output if bitstyles version ever contains a number above 9. - Modified the process of downgrading classnames to the target bitstyles version by chaining renames. This is necessary preparation work to support bitstyles `v6.0.0`. - Added support for bitstyles `v6.0.0`. You can continue using bitstyles_phoenix with a lower bitstyles version, or migrate your codebase to bitstyles `v6.0.0`. diff --git a/README.md b/README.md index 0bbfb83..2e20d5b 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.4"} + {:bitstyles_phoenix, "~> 2.5"} ] end ``` diff --git a/mix.exs b/mix.exs index 98a58f3..b2d606b 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule BitstylesPhoenix.MixProject do def project do [ app: :bitstyles_phoenix, - version: "2.4.0", + version: "2.5.0", elixir: "~> 1.11", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,