diff --git a/CHANGES.rst b/CHANGES.rst index fa82441..6b94044 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 f21700c..da03c21 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__",)