From 29edcffe9a104f611685ef8c071f6d9d48174a05 Mon Sep 17 00:00:00 2001 From: Guillaume Viger Date: Wed, 6 May 2026 09:50:00 -0400 Subject: [PATCH] :package: release: v1.11.0 --- CHANGES.rst | 8 +++++++- invenio_cli/__init__.py | 4 ++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index fa824416..6b940449 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,6 @@ .. Copyright (C) 2019-2024 CERN. - Copyright (C) 2019-2021 Northwestern University. + Copyright (C) 2019-2026 Northwestern University. Copyright (C) 2025 TU Wien. Copyright (C) 2025 Graz University of Technology. @@ -10,6 +10,12 @@ Changes ======= +Version v1.11.0 (released 2026-05-06) + +- feat: introduced no-op service helper. +- fix(run): keep invenio-cli run [OPTIONS] backwards compatibility +- fix(run): don't override SITE_API/UI_URL settings with listening hosts/port + Version v1.10.0 (released 2026-04-21) - assets: add lock command diff --git a/invenio_cli/__init__.py b/invenio_cli/__init__.py index f21700ca..da03c219 100644 --- a/invenio_cli/__init__.py +++ b/invenio_cli/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # Copyright (C) 2019-2025 CERN. -# Copyright (C) 2019 Northwestern University. +# Copyright (C) 2019-2026 Northwestern University. # Copyright (C) 2025 Graz University of Technology. # # Invenio-Cli is free software; you can redistribute it and/or modify it @@ -9,6 +9,6 @@ """Invenio module to ease the creation and management of applications.""" -__version__ = "1.10.0" +__version__ = "1.11.0" __all__ = ("__version__",)