From 0ff8c4499c50d88a0eceb3e51fd8901b541466af Mon Sep 17 00:00:00 2001 From: Christoph Ladurner Date: Sat, 30 Nov 2024 20:48:56 +0100 Subject: [PATCH] release: v3.0.1 --- CHANGES.rst | 8 ++++++++ invenio_userprofiles/__init__.py | 3 ++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 8d4f924..0a46231 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,7 @@ .. This file is part of Invenio. Copyright (C) 2015-2023 CERN. + Copyright (C) 2024 Graz University of Technology. 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. @@ -8,6 +9,13 @@ Changes ======= +Version 3.0.1 (release 2024-11-30) + +- setup: change to reusable workflows +- setup: pin dependencies +- i18n:push translations +- tests: check existing username case-insensitive + Version 3.0.0 (released 2024-03-22) - breaking change: remove breadcrumbs usage diff --git a/invenio_userprofiles/__init__.py b/invenio_userprofiles/__init__.py index 823c17d..12ebbbd 100644 --- a/invenio_userprofiles/__init__.py +++ b/invenio_userprofiles/__init__.py @@ -2,6 +2,7 @@ # # This file is part of Invenio. # Copyright (C) 2015-2018 CERN. +# Copyright (C) 2024 Graz University of Technology. # # 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. @@ -30,7 +31,7 @@ from .ext import InvenioUserProfiles from .models import UserProfile, UserProfileProxy -__version__ = "3.0.0" +__version__ = "3.0.1" __all__ = ( "__version__",