diff --git a/CHANGES.rst b/CHANGES.rst index 0a5d43c..33fe611 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,7 @@ .. This file is part of pytest-invenio. Copyright (C) 2018-2024 CERN. + Copyright (C) 2024 Graz University of Technology. pytest-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,12 @@ Changes ======= +Version 3.0.0 (released 2024-12-02) + +- setup: remove pytest pin +- global: add compatibility to sqlalchemy >= 2.0 +- fixtures: apply new sqlalchemy session rollback handling + Version 2.2.1 (released 2024-06-27) - installation: pin importlib-metadata ``<8.0.0`` diff --git a/pytest_invenio/__init__.py b/pytest_invenio/__init__.py index 9b34d7d..a75ca56 100644 --- a/pytest_invenio/__init__.py +++ b/pytest_invenio/__init__.py @@ -2,6 +2,7 @@ # # This file is part of pytest-invenio. # Copyright (C) 2017-2024 CERN. +# Copyright (C) 2024 Graz University of Technology. # # pytest-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. @@ -499,6 +500,6 @@ def test_browser(live_server, browser): """ -__version__ = "2.2.1" +__version__ = "3.0.0" __all__ = ("__version__",)