diff --git a/CHANGES.rst b/CHANGES.rst index a74151e5..b062d36d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,5 +1,6 @@ .. Copyright (C) 2020-2024 CERN. + Copyright (C) 2024 Graz University of Technology. Invenio-Vocabularies 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,12 @@ Changes ======= +Version 7.0.0.dev1 (released 2024-12-12) + +- comp: make compatible to flask-sqlalchemy>=3.1 +- setup: change to reusable workflows +- setup: bump major dependencies + Version v6.10.1 (released 2024-12-12) - names: drop unique id on the internal id diff --git a/invenio_vocabularies/__init__.py b/invenio_vocabularies/__init__.py index 80be667e..dd0291a8 100644 --- a/invenio_vocabularies/__init__.py +++ b/invenio_vocabularies/__init__.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- # # Copyright (C) 2020-2024 CERN. +# Copyright (C) 2024 Graz University of Technology. # # Invenio-Vocabularies 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 InvenioVocabularies -__version__ = "6.10.1" +__version__ = "7.0.0.dev1" __all__ = ("__version__", "InvenioVocabularies")