From cd4b15264f6c8b4c040baa186cc05902e4f2d122 Mon Sep 17 00:00:00 2001 From: Christoph Ladurner Date: Thu, 28 Nov 2024 20:42:35 +0100 Subject: [PATCH] release: v1.3.3 --- CHANGES.rst | 5 +++++ invenio_pidstore/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 1b843df..5152daf 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,7 @@ .. This file is part of Invenio. Copyright (C) 2015-2020 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. @@ -8,6 +9,10 @@ Changes ======= +Version 1.3.3 (released 2024-11-28) + +- setup: pin dependencies + Version 1.3.2 (released 2024-11-05) - model: make forward compatible to sqlalchemy >= 2 diff --git a/invenio_pidstore/__init__.py b/invenio_pidstore/__init__.py index 99514b2..589af10 100644 --- a/invenio_pidstore/__init__.py +++ b/invenio_pidstore/__init__.py @@ -369,6 +369,6 @@ from .ext import InvenioPIDStore from .proxies import current_pidstore -__version__ = "1.3.2" +__version__ = "1.3.3" __all__ = ("__version__", "InvenioPIDStore", "current_pidstore")