From 14831d7460cd5b61466e3f5409ac923ffec39146 Mon Sep 17 00:00:00 2001 From: Nicola Tarocco Date: Mon, 21 Oct 2024 21:18:49 +0200 Subject: [PATCH] release: v4.1.0 --- CHANGES.rst | 8 +++++++- invenio_app_ils/__init__.py | 4 ++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index aa8239963..1227c58a5 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,6 @@ .. - Copyright (C) 2018-2022 CERN. + Copyright (C) 2018-2024 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,12 @@ Changes ======= +Version 4.1.0 (released 2024-10-21) + +- search: apply the same search analyzers to the fields that needs to be searchable. + This is required when using cross-field searches. + Re-create the documents and series indices to take advantage of this change. + Version 4.0.0 (released 2024-08-07) - Initial full release diff --git a/invenio_app_ils/__init__.py b/invenio_app_ils/__init__.py index 8c2186e6e..1d0d7f142 100644 --- a/invenio_app_ils/__init__.py +++ b/invenio_app_ils/__init__.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2018-2022 CERN. +# Copyright (C) 2018-2024 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__ = "4.0.0" +__version__ = "4.1.0" __all__ = ("__version__",)