diff --git a/CHANGES.rst b/CHANGES.rst index 196616e5..de52a682 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,10 @@ Changes ======= +Version 1.4.1 (released 2020-10-19) + +- Fix bouncing search results for BaseRecordSearchV2. + Version 1.4.0 (released 2020-09-18) - Adds new search class that can be initialised only from arguments to the diff --git a/invenio_search/version.py b/invenio_search/version.py index e0ffbc5d..fbaef32c 100644 --- a/invenio_search/version.py +++ b/invenio_search/version.py @@ -2,6 +2,7 @@ # # This file is part of Invenio. # Copyright (C) 2015-2020 CERN. +# Copyright (C) 2020 Northwestern University. # # Invenio is free software; you can redistribute it and/or modify it # under the terms of the MIT License; see LICENSE file for more details. @@ -12,6 +13,4 @@ and parsed by ``setup.py``. """ -from __future__ import absolute_import, print_function - -__version__ = '1.4.0' +__version__ = '1.4.1'