Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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.

Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions invenio_cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# -*- 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
# under the terms of the MIT License; see LICENSE file for more details.

"""Invenio module to ease the creation and management of applications."""

__version__ = "1.10.0"
__version__ = "1.11.0"

__all__ = ("__version__",)