diff --git a/CHANGES.rst b/CHANGES.rst index 2580f3c..1b843df 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,11 @@ Changes ======= +Version 1.3.2 (released 2024-11-05) + +- model: make forward compatible to sqlalchemy >= 2 +- i18n: push translations + Version 1.3.1 (released 2023-03-02) - Remove unnecessary speaklater dependency references diff --git a/invenio_pidstore/__init__.py b/invenio_pidstore/__init__.py index 5644baf..99514b2 100644 --- a/invenio_pidstore/__init__.py +++ b/invenio_pidstore/__init__.py @@ -2,6 +2,7 @@ # # This file is part of Invenio. # Copyright (C) 2015-2018 CERN. +# Copyright (C) 2024 Graz University of Technology. # # Invenio is free software; you can redistribute it and/or modify it # under the terms of the MIT License; see LICENSE file for more details. @@ -368,6 +369,6 @@ from .ext import InvenioPIDStore from .proxies import current_pidstore -__version__ = "1.3.1" +__version__ = "1.3.2" __all__ = ("__version__", "InvenioPIDStore", "current_pidstore")