From f0321c635a2eec1b0ad80bd4295ed570dfa750c5 Mon Sep 17 00:00:00 2001 From: Zacharias Zacharodimos Date: Wed, 14 Aug 2024 15:48:58 +0200 Subject: [PATCH] release: v4.1.0 --- CHANGES.rst | 7 +++++++ invenio_stats/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index f0fbd82..b0856a5 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -9,6 +9,13 @@ Changes ======= +Version 4.1.0 (release 2024-08-14) +---------------------------------- + +- introduce a new config `STATS_REGISTER_INDEX_TEMPLATES` to be able to register + events and aggregations as index templates (ensure backwards compatibility) + + Version 4.0.2 (release 2024-03-04) ---------------------------------- diff --git a/invenio_stats/__init__.py b/invenio_stats/__init__.py index 42df74b..9a8cb7c 100644 --- a/invenio_stats/__init__.py +++ b/invenio_stats/__init__.py @@ -440,7 +440,7 @@ def register_queries(): from .ext import InvenioStats from .proxies import current_stats -__version__ = "4.0.2" +__version__ = "4.1.0" __all__ = ( "__version__",