From 5d7476b363adacaaa5e10775eba4fe558d33651a Mon Sep 17 00:00:00 2001 From: Mariagabriela Giorgianni Date: Thu, 18 Dec 2025 14:46:59 -0400 Subject: [PATCH] fix: downgrade tutor integration tests v0.1.0 fix: removed integration tests for Tutor versions less than 20.0.0. --- .github/workflows/integration-test.yml | 4 ++-- CHANGELOG.md | 7 +++++++ eox_core/__init__.py | 2 +- setup.cfg | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index ec189ae8..be3dfbaf 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -9,10 +9,10 @@ jobs: fail-fast: false max-parallel: 1 matrix: - tutor_version: ['<20.0.0', '<21.0.0', 'main'] + tutor_version: ['<21.0.0', 'main'] steps: - name: Run Integration Tests - uses: eduNEXT/integration-test-in-tutor@main + uses: eduNEXT/integration-test-in-tutor@v0.1.0 with: tutor_version: ${{ matrix.tutor_version }} tutor_plugins: 'forum' diff --git a/CHANGELOG.md b/CHANGELOG.md index 36138112..dccca835 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,13 @@ Please do not update the unreleased notes. +## [v12.2.1](https://github.com/eduNEXT/eox-core/compare/v12.2.0...v12.2.1) - (2025-12-18) + +### Changed + +- Pin Tutor integration-tests GitHub Action version to avoid integration test failures. +- Remove integration tests for Tutor<20.0.0 + ## [v12.2.0](https://github.com/eduNEXT/eox-core/compare/v12.1.0...v12.2.0) - (2025-10-13) ### Changed diff --git a/eox_core/__init__.py b/eox_core/__init__.py index b25c8908..efd6010b 100644 --- a/eox_core/__init__.py +++ b/eox_core/__init__.py @@ -1,4 +1,4 @@ """ Init for main eox-core app """ -__version__ = '12.2.0' +__version__ = '12.2.1' diff --git a/setup.cfg b/setup.cfg index 02abaae3..2a8added 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 12.2.0 +current_version = 12.2.1 commit = False tag = False