diff --git a/CHANGES.rst b/CHANGES.rst index 8c2b12e0..a7805537 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,11 @@ Changes ======= +Version v6.4.0 (released 2024-11-08) + +- transformer: add new RestrictedTerm and RestrictedTermValue to restrict search for + individual fields based on permissions + Version v6.3.1 (released 2024-10-01) - uow: moved Unit of Work pattern and non-record Operations to invenio-db. diff --git a/invenio_records_resources/__init__.py b/invenio_records_resources/__init__.py index 614c0c63..4948db05 100644 --- a/invenio_records_resources/__init__.py +++ b/invenio_records_resources/__init__.py @@ -10,6 +10,6 @@ from .ext import InvenioRecordsResources -__version__ = "6.3.1" +__version__ = "6.4.0" __all__ = ("__version__", "InvenioRecordsResources")