diff --git a/CHANGES.rst b/CHANGES.rst index bb68c54af..8b69fcedf 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,6 @@ .. - Copyright (C) 2018-2025 CERN. + Copyright (C) 2018-2026 CERN. invenio-app-ils 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 +8,16 @@ Changes ======= +Version 6.2.0 (released 2026-01-06) + +- stats: generalize stat tracking loan extensions to track all transitions +- stats: raise error when loan is indexed while loan transition events index does not exits +- stats: add feature flag for extending record indices with stats +- stats: warn when loan gets indexed while loan-transitions index does not exist +- global: update invenio-circulation +- stats: add loan stats endpoint and extend loans index +- stats: add stat to track loan extensions + Version 6.1.1 (released 2025-12-10) - tests: move covers builder test into correct folder diff --git a/invenio_app_ils/__init__.py b/invenio_app_ils/__init__.py index d03206a7f..a515ac69e 100644 --- a/invenio_app_ils/__init__.py +++ b/invenio_app_ils/__init__.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2018-2024 CERN. +# Copyright (C) 2018-2026 CERN. # # invenio-app-ils is free software; you can redistribute it and/or modify it # under the terms of the MIT License; see LICENSE file for more details. """invenio-app-ils.""" -__version__ = "6.1.1" +__version__ = "6.2.0" __all__ = ("__version__",)