diff --git a/CHANGES.rst b/CHANGES.rst
index b85d3d535ae9d602e6dbf0aaea50e07a3e4cca7a..11aaaad06938b771bf7f82d952d85eaf07c126eb 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -14,6 +14,7 @@ Version 2023.2 (released 2023-04-24, updated 2023-05-26)
- Set affiliation (hard-coded) to TU Wien in `user.profile`
- Set a default template for the `description` metadata field
- Add a null check for the current_user in the logging formatter
+- Prevent the logging formatter from blowing up outside of a request context
Version 2023.1 (released 2023-01-13)
diff --git a/invenio_config_tuw/__init__.py b/invenio_config_tuw/__init__.py
index de80653b5909e4e97f7668faba2b55d462c0b5bc..faa81243e3ef73907bdcdf87dec8d5489efa5619 100644
--- a/invenio_config_tuw/__init__.py
+++ b/invenio_config_tuw/__init__.py
@@ -9,6 +9,6 @@
from .ext import InvenioConfigTUW
-__version__ = "2023.2.3"
+__version__ = "2023.2.4"
__all__ = ("__version__", "InvenioConfigTUW")