diff --git a/CHANGES.rst b/CHANGES.rst
index 2d48d2020ee508accf44c731324d16ad8fecc089..4d1bfd6e99789851accd2a767baf894cd321d9ac 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -9,6 +9,17 @@ Changes
 =======
 
 
+Version 2025.1.12 (released 2025-03-20)
+
+- Send notification about started reviews to other reviewers
+- Allow user/group notifications to render a different template
+- Send notifications to record owners about edits published by somebody else
+- Fix incorrect usage of `lstrip()` and `rstrip()`
+- Add tests for curation-related workflows and notifications
+- Align notification templates with those from Invenio-Theme-TUW
+- A few minor changes for SonarQube
+
+
 Version 2025.1.11 (released 2025-03-11)
 
 - Omit the default value for "version" on the deposit form
diff --git a/invenio_config_tuw/__init__.py b/invenio_config_tuw/__init__.py
index 3c5ad867a95e9cb8e6c1147c36fa02659caef371..bf8af4b5472da864f4ed306ecfcec8d26354a288 100644
--- a/invenio_config_tuw/__init__.py
+++ b/invenio_config_tuw/__init__.py
@@ -9,6 +9,6 @@
 
 from .ext import InvenioConfigTUW
 
-__version__ = "2025.1.11"
+__version__ = "2025.1.12"
 
 __all__ = ("__version__", "InvenioConfigTUW")