diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 104e5ee..7ece71c 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 3d1c3f9..accc617 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 6ccc4ba..fa7359c 100644 --- a/version.php +++ b/version.php @@ -25,11 +25,11 @@ 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 = 'block_microsoft'; $plugin->maturity = MATURITY_STABLE; $plugin->dependencies = [ - 'local_o365' => 2025040820, + 'local_o365' => 2025100600, ];