Skip to content

Commit

Permalink
Moodle 4.5 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulholden committed Oct 8, 2024
1 parent 3271c93 commit 5c61869
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/moodle-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
include:
- php: '8.0'
moodle-branch: 'MOODLE_401_STABLE'
- php: '8.0'
moodle-branch: 'MOODLE_402_STABLE'
- php: '8.1'
moodle-branch: 'MOODLE_403_STABLE'
- php: '8.2'
moodle-branch: 'MOODLE_404_STABLE'
- php: '8.3'
moodle-branch: 'MOODLE_405_STABLE'

steps:
- name: Check out repository code
Expand Down Expand Up @@ -61,6 +61,10 @@ jobs:
if: ${{ !cancelled() }}
run: moodle-plugin-ci phpcs --max-warnings 0

- name: PHPDoc checker
if: ${{ !cancelled() }}
run: moodle-plugin-ci phpdoc --max-warnings 0

- name: Grunt
if: ${{ !cancelled() }}
run: moodle-plugin-ci grunt --max-lint-warnings 0
Expand Down
1 change: 1 addition & 0 deletions classes/version_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ class version_helper {

/** @var array $branchdates See https://docs.moodle.org/dev/Releases */
protected static $branchdates = [
20241007 => '4.5',
20240422 => '4.4',
20231009 => '4.3',
20230424 => '4.2',
Expand Down
1 change: 1 addition & 0 deletions tests/version_helper_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ public function test_get_version_string(string $version, string $expected): void
*/
public static function get_release_name_provider(): array {
return [
['2024100700', '4.5'],
['2024042200', '4.4'],
['2023100900', '4.3'],
['2023042400', '4.2'],
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
defined('MOODLE_INTERNAL') || die;

$plugin->component = 'report_upgradelog';
$plugin->release = '4.4';
$plugin->version = 2024042200;
$plugin->release = '4.5';
$plugin->version = 2024100800;
$plugin->requires = 2022112800; // Moodle 4.1 onwards.
$plugin->maturity = MATURITY_STABLE;

0 comments on commit 5c61869

Please sign in to comment.