Skip to content

Commit 9f14b72

Browse files
committed
Version bump 3.9.13
1 parent b2e9713 commit 9f14b72

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
All notable changes to the tool_vault plugin will be documented in this file.
44

5-
## Unreleased
5+
## [3.9.13] - 2025-05-10
6+
### Changed
7+
- New version numbering scheme. The version number now has format X.Y.Z, where:
8+
- X.Y is the minimum supported version of Moodle (for example, 3.9)
9+
- Z is the version of the plugin within this series
10+
Maximum supported version of Moodle can be found in the version.php file, for example
11+
`$plugin->supported = [39, 500];` means that the plugin will work on Moodle 3.9 to 5.0.
612
### Fixed
713
- Do not analyse plugins in restore pre-check if the backup is from a higher version of Moodle
814
- Small fixes to the db schema check when the backed up site had incorrect field types

version.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626

2727
/** @var stdClass $plugin */
2828
$plugin->component = 'tool_vault';
29-
$plugin->release = '2.12';
30-
$plugin->version = 2025040300;
29+
$plugin->release = '3.9.13';
30+
$plugin->version = 2025051000;
3131
$plugin->requires = 2020061500;
3232
$plugin->supported = [39, 500];
3333
$plugin->maturity = MATURITY_STABLE;

0 commit comments

Comments
 (0)