From 5650148ec3e1c1800c10252f50402b371f65aafd Mon Sep 17 00:00:00 2001 From: Alex Ioannidis Date: Mon, 16 Dec 2024 11:43:07 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20release:=20v3.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGES.rst | 6 ++++++ invenio_oaiserver/__init__.py | 2 +- tests/conftest.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index bd32a9f..4a88879 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -9,6 +9,12 @@ Changes ======= +Version v3.1.0 (released 2024-12-16) + +- percolator: use `OAISERVER_RECORD_INDEX` to determine percolator index + * Instead of relying on the default `RecordIndexer` class to determine + the percolator index, we reuse the `OAISERVER_RECORD_INDEX` config variable. + Version 3.0.0 (release 2024-12-06) - fix: tests, apply invenio-indexer change diff --git a/invenio_oaiserver/__init__.py b/invenio_oaiserver/__init__.py index 50a9532..1827ffc 100644 --- a/invenio_oaiserver/__init__.py +++ b/invenio_oaiserver/__init__.py @@ -186,6 +186,6 @@ from .ext import InvenioOAIServer from .proxies import current_oaiserver -__version__ = "3.0.0" +__version__ = "3.1.0" __all__ = ("__version__", "InvenioOAIServer", "current_oaiserver") diff --git a/tests/conftest.py b/tests/conftest.py index 43ceda6..0c280a3 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # This file is part of Invenio. -# Copyright (C) 2015-2018 CERN. +# Copyright (C) 2015-2024 CERN. # Copyright (C) 2024 Graz University of Technology. # # Invenio is free software; you can redistribute it and/or modify it