diff --git a/CHANGES.rst b/CHANGES.rst index bf41110..d34efad 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,7 @@ .. This file is part of Invenio. Copyright (C) 2015-2024 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,11 @@ Changes ======= +Version 3.0.1 (release 2024-11-30) + +- setup: change to reusable workflows +- setup: pin dependencies + Version v3.0.0 (released 2024-10-10) - webpack: update axios major version diff --git a/invenio_search_ui/__init__.py b/invenio_search_ui/__init__.py index a9be742..619d806 100644 --- a/invenio_search_ui/__init__.py +++ b/invenio_search_ui/__init__.py @@ -2,6 +2,7 @@ # # This file is part of Invenio. # Copyright (C) 2015-2024 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. @@ -327,6 +328,6 @@ def my_record_search(): from .ext import InvenioSearchUI -__version__ = "3.0.0" +__version__ = "3.0.1" __all__ = ("__version__", "InvenioSearchUI")