diff --git a/CHANGES.rst b/CHANGES.rst
index b868a10dde6a380efff18a4ccd0a9d33bde0bc75..4d4fc09296e319ca9a1f6b9dad848cf21267400b 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -8,11 +8,12 @@
 Changes
 =======
 
-Version 2022.2 (released 2022-07-19, updated 2022-08-26)
+Version 2022.2 (released 2022-07-19, updated 2022-11-23)
 
 - v9 compat: Replace usage of user.profile with user.user_profile
 - Add CLI command for showing users' API tokens
 - Add CLI command for calling all known services' ``rebuild_index()``
+- Migrate from setup.py to setup.cfg
 
 
 Version 2022.1 (released 2022-03-25, updated 2022-07-04)
diff --git a/invenio_utilities_tuw/__init__.py b/invenio_utilities_tuw/__init__.py
index 0a9a847c2b770b3e3f4dee44e97810f573c1acc1..8dff1dd801c1d3ca13f96f74f7f516eecf2dd0c8 100644
--- a/invenio_utilities_tuw/__init__.py
+++ b/invenio_utilities_tuw/__init__.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2020 - 2021 TU Wien.
+# Copyright (C) 2020-2022 TU Wien.
 #
 # Invenio-Utilities-TUW is free software; you can redistribute it and/or
 # modify it under the terms of the MIT License; see LICENSE file for more
@@ -10,6 +10,6 @@
 
 from .ext import InvenioUtilitiesTUW
 
-__version__ = "2022.2.2"
+__version__ = "2022.2.3"
 
 __all__ = ("__version__", "InvenioUtilitiesTUW")