From e1e3b0f0a5006c64b01b9f26624bb046a769670e Mon Sep 17 00:00:00 2001 From: Karolina Przerwa Date: Fri, 21 Feb 2025 15:34:00 +0100 Subject: [PATCH 1/2] installation: bump invenio-logging and rest --- .github/workflows/tests.yml | 5 ----- setup.cfg | 4 ++-- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1e16a04e9..c7ea32745 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -45,11 +45,6 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: diff --git a/setup.cfg b/setup.cfg index 5fbe4a6e8..52117e798 100644 --- a/setup.cfg +++ b/setup.cfg @@ -39,9 +39,9 @@ install_requires = invenio-admin>=1.4.0,<1.5.0 invenio-assets>=3.0.0,<4.0.0 invenio-formatter>=2.0.0,<3.0.0 - invenio-logging>=2.0.0,<3.0.0 + invenio-logging[sentry]>=2.1.5,<3.0.0 invenio-mail>=2.0.0,<3.0.0 - invenio-rest>=1.3.0,<1.4.0 + invenio-rest>=1.5.0,<1.6.0 invenio-theme>=2.0.0,<3.0.0 # Invenio auth bundle invenio-access>=2.0.0,<3.0.0 From 9b26d9573161707541a625c3cf42bd4e24db9ab8 Mon Sep 17 00:00:00 2001 From: Karolina Przerwa Date: Fri, 21 Feb 2025 15:34:10 +0100 Subject: [PATCH 2/2] release: v4.4.0 --- CHANGES.rst | 5 +++++ invenio_app_ils/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index cca398dab..734d446e3 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,11 @@ Changes ======= + +Version 4.4.0 (released 2025-02-21) + +- installation: pin invenio-logging + Version 4.3.0 (released 2024-11-19) - self-checkout: use dedicated endpoints for the entire workflow for better diff --git a/invenio_app_ils/__init__.py b/invenio_app_ils/__init__.py index dc0492a7b..75020234d 100644 --- a/invenio_app_ils/__init__.py +++ b/invenio_app_ils/__init__.py @@ -7,6 +7,6 @@ """invenio-app-ils.""" -__version__ = "4.3.0" +__version__ = "4.4.0" __all__ = ("__version__",)