Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottVerbeek committed Jan 5, 2024
1 parent 5eb7218 commit c71c371
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/moodle-release.yml
Expand Up @@ -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'
Expand Down
8 changes: 4 additions & 4 deletions version.php
Expand Up @@ -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.

0 comments on commit c71c371

Please sign in to comment.