diff --git a/CHANGELOG.md b/CHANGELOG.md
index bb2806b..5bd4eb8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,9 @@
# Changelog
-## Unreleased
+## v2.5.1 - 2025-08-11
- Changed `ui_tabs` and `ui_tab_button` to follow accessibility guidelines: replaced the `
` with a `` and instead of nesting the buttons inside `
- `s they are now the direct children of the `div` and have a `role="tab"` set. As a side effect the gap between the tabs is now a little smaller.
+- Fix compiler warnings for elixir 17+ and upgrade dependencies.
## v2.5.0 - 2024-09-25
diff --git a/mix.exs b/mix.exs
index 0d9eca5..550e6f1 100644
--- a/mix.exs
+++ b/mix.exs
@@ -4,7 +4,7 @@ defmodule BitstylesPhoenix.MixProject do
def project do
[
app: :bitstyles_phoenix,
- version: "2.5.0",
+ version: "2.5.1",
elixir: "~> 1.11",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,