Skip to content

Commit d82a3a2

Browse files
committed
Merge branch 'r500' into 'MOODLE_500_STABLE'
Release 5.0 See merge request workplace/moodle-mod_coursecertificate!220
2 parents 2ffa21a + e851851 commit d82a3a2

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

.github/workflows/moodle-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ jobs:
3434
- php: '8.4'
3535
# Main job. Run all checks that do not require setup and only need to be run once.
3636
runchecks: 'all'
37-
moodle-branch: 'main'
37+
moodle-branch: 'MOODLE_500_STABLE'
3838
database: 'pgsql'
3939
- php: '8.2'
40-
moodle-branch: 'main'
40+
moodle-branch: 'MOODLE_500_STABLE'
4141
database: 'mariadb'
4242

4343
steps:

.gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ services:
99
variables:
1010
MOODLE_REPO_WORKPLACE: git@git.in.moodle.com:workplace/workplacedev.git
1111
MOODLE_BRANCH_WORKPLACE500R: WORKPLACE_ROLLING_500
12-
# MOODLE_BRANCH_WORKPLACE500S: WORKPLACE_500
12+
MOODLE_BRANCH_WORKPLACE500S: WORKPLACE_500
1313
MOODLE_REPO_LMS: git@git.in.moodle.com:moodle/moodle.git
14-
MOODLE_BRANCH_LMS500: main # TODO change to MOODLE_500_STABLE
14+
MOODLE_BRANCH_LMS500: MOODLE_500_STABLE
1515
MOODLE_BEHAT_WDHOST: "http://selenium-standalone-chrome:4444/wd/hub"
1616
POSTGRES_USER: postgres
1717
POSTGRES_PASSWORD: ""

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 5.0 - 2025-04-14
4+
### Added
5+
- Added support for Moodle 5.0
6+
37
## 4.5.3 - 2025-03-18
48
### Fixed
59
- behat tests checking that certificate opens in a new window failing with selenium/standalone-chrome:4

version.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@
2525
defined('MOODLE_INTERNAL') || die();
2626

2727
$plugin->component = 'mod_coursecertificate';
28-
$plugin->release = '5.0dev';
29-
$plugin->version = 2025040300;
30-
$plugin->requires = 2025040100.00;
28+
$plugin->release = '5.0';
29+
$plugin->version = 2025041400;
30+
$plugin->requires = 2025041400.00;
3131
$plugin->maturity = MATURITY_STABLE;
3232
$plugin->supported = [500, 500];
3333
$plugin->dependencies = [
34-
'tool_certificate' => 2025040300,
34+
'tool_certificate' => 2025041400,
3535
];

0 commit comments

Comments
 (0)