From 89c8a46d9507cc95682d560385878889ca9f02dc Mon Sep 17 00:00:00 2001 From: Christoph Ladurner Date: Sun, 3 Nov 2024 11:11:34 +0100 Subject: [PATCH] release: v3.2.0 --- CHANGES.rst | 6 ++++++ invenio_banners/__init__.py | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index b8afe1e..e5bd3f4 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -7,6 +7,12 @@ Changes ======= +Version v3.2.0 (released 2024-11-05) + +- feat(administration): use html editor for message +- global: change the code to be compatible with sqlalchemy >= 2.0 +- global: add compatibility layer to move to flask >= 3.0 + Version v3.1.0 (released 2024-08-07) - http headers: use and adjust vnd.inveniordm.v1+json http accept header diff --git a/invenio_banners/__init__.py b/invenio_banners/__init__.py index f58aff3..724e591 100644 --- a/invenio_banners/__init__.py +++ b/invenio_banners/__init__.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- # # Copyright (C) 2020-2024 CERN. +# Copyright (C) 2024 Graz University of Technology. # # Invenio-Banners is free software; you can redistribute it and/or modify it # under the terms of the MIT License; see LICENSE file for more details. @@ -9,6 +10,6 @@ from .ext import InvenioBanners -__version__ = "3.1.0" +__version__ = "3.2.0" __all__ = ("__version__", "InvenioBanners")