diff --git a/CHANGES.rst b/CHANGES.rst
index 49ef37a64eaa5a6f212e96ab00b8c4add28ecaf7..4d527243484651d339f60fff3e83f3c85d17a889 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -8,7 +8,7 @@
 Changes
 =======
 
-Version 2023.2 (released 2023-04-24, updated 2023-09-25)
+Version 2023.2 (released 2023-04-24, updated 2023-10-12)
 
 
 - v11 compat: Update permission policies and disable archive download
@@ -20,6 +20,7 @@ Version 2023.2 (released 2023-04-24, updated 2023-09-25)
 - Enable sending of registration mails
 - Allow edits to owners of published records even if they only have `trusted-user` role
 - Fix a typo in the config generated by the `TUWSSOSettingsHelper`
+- Fix function to fetch user by username
 
 
 Version 2023.1 (released 2023-01-13)
diff --git a/invenio_config_tuw/__init__.py b/invenio_config_tuw/__init__.py
index 0bd7eb34f76f4e0437a68ad83e5846f46d390e69..993967e8a5fd1e2182efa0513e264ad659b0aaa0 100644
--- a/invenio_config_tuw/__init__.py
+++ b/invenio_config_tuw/__init__.py
@@ -9,6 +9,6 @@
 
 from .ext import InvenioConfigTUW
 
-__version__ = "2023.2.10"
+__version__ = "2023.2.11"
 
 __all__ = ("__version__", "InvenioConfigTUW")