diff --git a/CHANGES.rst b/CHANGES.rst index 0e707e3a7e7244617bfebb92cd755489619d6396..b85d3d535ae9d602e6dbf0aaea50e07a3e4cca7a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,11 +8,12 @@ Changes ======= -Version 2023.2 (released 2023-04-24, updated 2023-04-27) +Version 2023.2 (released 2023-04-24, updated 2023-05-26) - v11 compat: Update permission policies and disable archive download - 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 Version 2023.1 (released 2023-01-13) diff --git a/invenio_config_tuw/__init__.py b/invenio_config_tuw/__init__.py index 9c5e24ab43b06800a8915f90cec77b54054f9a9b..de80653b5909e4e97f7668faba2b55d462c0b5bc 100644 --- a/invenio_config_tuw/__init__.py +++ b/invenio_config_tuw/__init__.py @@ -9,6 +9,6 @@ from .ext import InvenioConfigTUW -__version__ = "2023.2.2" +__version__ = "2023.2.3" __all__ = ("__version__", "InvenioConfigTUW")