diff --git a/CHANGES.rst b/CHANGES.rst index 3b21730..fedd5cb 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,5 +1,6 @@ .. Copyright (C) 2022-2024 CERN. + Copyright (C) 2024 Graz University of Technology. invenio-administration is free software; you can redistribute it and/or modify it under the terms of the MIT License; see LICENSE file for more @@ -8,6 +9,10 @@ Changes ======= +Version v3.0.0 (released 2024-11-29) + +- setup: bump major dependencies + Version v2.9.0 (released 2024-11-11) - admin: change default # of results from 10 to 20 diff --git a/invenio_administration/__init__.py b/invenio_administration/__init__.py index 040ed91..3f079f6 100644 --- a/invenio_administration/__init__.py +++ b/invenio_administration/__init__.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- # # Copyright (C) 2022-2024 CERN. +# Copyright (C) 2024 Graz University of Technology. # # invenio-administration 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 +11,6 @@ from .ext import InvenioAdministration -__version__ = "2.9.0" +__version__ = "3.0.0" __all__ = ["InvenioAdministration"]