From 36bec82013dcc098bb5596e34f20a83ad77060f4 Mon Sep 17 00:00:00 2001 From: Alex Ioannidis Date: Sun, 28 Jan 2024 15:06:35 +0100 Subject: [PATCH] reelase: v1.0.4 --- CHANGES.rst | 6 +++++- invenio_config/__init__.py | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index d09832d..458a933 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,6 @@ .. This file is part of Invenio. - Copyright (C) 2015-2018 CERN. + Copyright (C) 2015-2024 CERN. 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 +8,10 @@ Changes ======= +Version 1.0.4 (released 2024-01-28) + +- Allow table HTML tags for sanitization + Version 1.0.3 (released 2020-05-06) - Deprecated Python versions lower than 3.6.0. Now supporting 3.6.0 and 3.7.0. diff --git a/invenio_config/__init__.py b/invenio_config/__init__.py index df50c35..24ffb00 100644 --- a/invenio_config/__init__.py +++ b/invenio_config/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # This file is part of Invenio. -# Copyright (C) 2015-2018 CERN. +# Copyright (C) 2015-2024 CERN. # # 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. @@ -180,7 +180,7 @@ from .module import InvenioConfigModule from .utils import create_conf_loader, create_config_loader -__version__ = "1.0.3" +__version__ = "1.0.4" __all__ = ( "__version__",