diff --git a/CHANGES.rst b/CHANGES.rst
index 9257d2ab84cbd6cfe27af5c9e56fcc2c8b8abb0b..e642bbe30ce5997e6b7585ebd72d68a2c64fc7d7 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,5 +1,5 @@
..
- Copyright (C) 2020-2023 TU Wien.
+ Copyright (C) 2020-2024 TU Wien.
Invenio Config TUW is free software; you can redistribute it and/or
modify it under the terms of the MIT License; see LICENSE file for more
@@ -8,8 +8,14 @@
Changes
=======
-Version 2023.2 (released 2023-04-24, updated 2023-12-22)
+Version 2024.1 (released 2024-05-22
+
+- Store ``given_name`` and ``family_name`` in user profiles
+- Use these values to more accurately synthesize default values for creators in metadata
+
+
+Version 2023.2 (released 2023-04-24, updated 2023-12-22)
- v11 compat: Update permission policies and disable archive download
- Set affiliation (hard-coded) to TU Wien in `user.profile`
diff --git a/invenio_config_tuw/__init__.py b/invenio_config_tuw/__init__.py
index 8814d9f2b6e080b07251b54dfa36bfc3634c1587..51d6823005d7ec3fc91449d38d6661d64462e17b 100644
--- a/invenio_config_tuw/__init__.py
+++ b/invenio_config_tuw/__init__.py
@@ -9,6 +9,6 @@
from .ext import InvenioConfigTUW
-__version__ = "2023.2.13"
+__version__ = "2024.1.0"
__all__ = ("__version__", "InvenioConfigTUW")