diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8858ac56..fa305eba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: services: postgres: - image: postgres:14 + image: postgres:15 env: POSTGRES_USER: 'postgres' POSTGRES_HOST_AUTH_METHOD: 'trust' @@ -40,7 +40,7 @@ jobs: strategy: fail-fast: false matrix: - moodle-branch: ['MOODLE_500_STABLE'] + moodle-branch: ['MOODLE_501_STABLE'] php: [8.2, 8.3, 8.4] database: [pgsql, mariadb] diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c0e25dfa..4f63b994 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,7 +20,7 @@ variables: COMPOSER_CACHE_DIR: "$CI_PROJECT_DIR/.cache/composer" NPM_CONFIG_CACHE: "$CI_PROJECT_DIR/.cache/npm" CI_BUILD_DIR: '/tmp/plugin' - MOODLE_BRANCH: 'MOODLE_500_STABLE' + MOODLE_BRANCH: 'MOODLE_501_STABLE' MOODLE_BEHAT_WWWROOT: 'http://localhost:8000' MOODLE_BEHAT_WDHOST: 'http://behat:4444/wd/hub' MOODLE_START_BEHAT_SERVERS: 'no' diff --git a/version.php b/version.php index 92cd5759..5d17fdd0 100644 --- a/version.php +++ b/version.php @@ -25,8 +25,8 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2025040815; -$plugin->requires = 2025040800; -$plugin->release = '5.0.4'; +$plugin->version = 2025100600; +$plugin->requires = 2025100600; +$plugin->release = '5.1.0'; $plugin->component = 'auth_oidc'; $plugin->maturity = MATURITY_STABLE;