Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,13 +1,23 @@

..
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.

Changes
=======

Version 7.0.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
- breaking change: global: update invenio-circulation
- breaking change: stats: add loan stats endpoint and extend loans index
- breaking change: stats: add stat to track loan extensions

Version 6.1.1 (released 2025-12-10)

- tests: move covers builder test into correct folder
Expand Down
4 changes: 2 additions & 2 deletions invenio_app_ils/__init__.py
Original file line number Diff line number Diff line change
@@ -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__ = "7.0.0"

__all__ = ("__version__",)
Loading