diff --git a/CHANGES.rst b/CHANGES.rst index a74151e5..37744a4f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,10 @@ Changes ======= +Version v6.11.0 (released 2024-12-13) + +- names: fix acronym in marshamllow schema + Version v6.10.1 (released 2024-12-12) - names: drop unique id on the internal id diff --git a/invenio_vocabularies/__init__.py b/invenio_vocabularies/__init__.py index 80be667e..adfbd7f5 100644 --- a/invenio_vocabularies/__init__.py +++ b/invenio_vocabularies/__init__.py @@ -10,6 +10,6 @@ from .ext import InvenioVocabularies -__version__ = "6.10.1" +__version__ = "6.11.0" __all__ = ("__version__", "InvenioVocabularies") diff --git a/invenio_vocabularies/contrib/names/schema.py b/invenio_vocabularies/contrib/names/schema.py index e2f3f611..77586e79 100644 --- a/invenio_vocabularies/contrib/names/schema.py +++ b/invenio_vocabularies/contrib/names/schema.py @@ -11,7 +11,14 @@ from functools import partial from invenio_i18n import lazy_gettext as _ -from marshmallow import ValidationError, fields, post_dump, post_load, validates_schema, EXCLUDE +from marshmallow import ( + EXCLUDE, + ValidationError, + fields, + post_dump, + post_load, + validates_schema, +) from marshmallow_utils.fields import IdentifierSet, SanitizedUnicode from marshmallow_utils.schemas import IdentifierSchema