diff --git a/.github/workflows/moodle-release.yml b/.github/workflows/moodle-release.yml index 4216544..a2cf51b 100644 --- a/.github/workflows/moodle-release.yml +++ b/.github/workflows/moodle-release.yml @@ -2,18 +2,18 @@ # Whenever version.php is changed, add the latest version # to the Moodle Plugins directory at https://moodle.org/plugins # -name: MOODLE_310_STABLE - Releasing in the Plugins directory +name: MOODLE_402_STABLE - Releasing in the Plugins directory on: push: branches: - - MOODLE_310_STABLE + - MOODLE_402_STABLE paths: - 'version.php' jobs: - workflow_group_310_plus_release: - uses: catalyst/catalyst-moodle-workflows/.github/workflows/group-310-plus-release.yml@main + workflow_group_402_plus_release: + uses: catalyst/catalyst-moodle-workflows/.github/workflows/group-402-plus-release.yml@main with: plugin_name: search_elastic extra_plugin_runners: 'moodle-plugin-ci add-plugin catalyst/moodle-local_aws' diff --git a/version.php b/version.php index d5c901c..6dab75e 100644 --- a/version.php +++ b/version.php @@ -24,12 +24,12 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2023092000; -$plugin->release = '4.1 Build (2023012400)'; // Build same as version. -$plugin->requires = 2016052304; +$plugin->version = 2023042405; +$plugin->release = '4.2.5 (Build: 20231222)'; // Build same as version. +$plugin->requires = 2023042405; $plugin->component = 'search_elastic'; $plugin->maturity = MATURITY_STABLE; $plugin->dependencies = array( 'local_aws' => 2023010900, ); -$plugin->supported = [310, 402]; // A range of branch numbers of supported moodle versions. +$plugin->supported = [402, 403]; // A range of branch numbers of supported moodle versions.