diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5bd4eb8..1ff0ddc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,8 @@
# Changelog
+## v2.5.2 - 2025-08-11
+- Brought back `unchecked_value` & `checked_value` for checkboxes in `ui_input` and `ui_raw_input`.
+
## 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.
diff --git a/mix.exs b/mix.exs
index 550e6f1..e504da6 100644
--- a/mix.exs
+++ b/mix.exs
@@ -4,7 +4,7 @@ defmodule BitstylesPhoenix.MixProject do
def project do
[
app: :bitstyles_phoenix,
- version: "2.5.1",
+ version: "2.5.2",
elixir: "~> 1.11",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,