diff --git a/CHANGES.rst b/CHANGES.rst
index 593133e7dc9c0671ab1fd12afcd179c3132b204e..160d195e523d4b7358edcf9a104335521b3e0d06 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -8,7 +8,7 @@
 Changes
 =======
 
-Version 2024.2 (released 2024-06-24, updated 2024-06-28)
+Version 2024.2 (released 2024-06-24, updated 2024-07-02)
 
 - v12 compat: Chase Invenio-OAuthClient refactoring
 - v12 compat: Chase permission policy changes
@@ -18,6 +18,7 @@ Version 2024.2 (released 2024-06-24, updated 2024-06-28)
 - Flatten the user preference `curation.consent` to `curation_consent`
 - Override search mappings
 - Remove support for creating `community-submission` requests for drafts
+- Allow {user,guest} access requests for new drafts by default
 
 
 Version 2024.1 (released 2024-05-22, updated 2024-05-22)
diff --git a/invenio_config_tuw/__init__.py b/invenio_config_tuw/__init__.py
index 2f1327224197635cb83cf4a8a96291c69320bf87..7d552542291873f89489729071ffb864ef731cf8 100644
--- a/invenio_config_tuw/__init__.py
+++ b/invenio_config_tuw/__init__.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# 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 details.
@@ -9,6 +9,6 @@
 
 from .ext import InvenioConfigTUW
 
-__version__ = "2024.2.1"
+__version__ = "2024.2.2"
 
 __all__ = ("__version__", "InvenioConfigTUW")