Skip to content

Commit 3305009

Browse files
committed
Prepare for 3.4.9 release
1 parent 689bbcb commit 3305009

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

bin/moodle-plugin-ci

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ if (file_exists(__DIR__.'/../../../autoload.php')) {
4646
}
4747

4848
// Current version. Keep it updated on releases.
49-
define('MOODLE_PLUGIN_CI_VERSION', '3.4.8');
49+
define('MOODLE_PLUGIN_CI_VERSION', '3.4.9');
5050

5151
define('MOODLE_PLUGIN_CI_BOXED', '@is_boxed@');
5252
define('ENV_FILE', dirname(__DIR__).'/.env');

docs/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
99
The format of this change log follows the advice given at [Keep a CHANGELOG](http://keepachangelog.com).
1010

1111
## [Unreleased]
12+
13+
## [3.4.9] - 2023-03-08
1214
### Added
1315
- Improved release process: Now every version changelog (this file) is automatically added to the release notes.
16+
- New `--test-version` option added to the `phpcs` (`codechecker`) command in order to specify the PHP version `(x.y)` or range of PHP versions `(x.y-w.z)` to be checked by the `PHPCompatibility` standard (part of the `moodle` standard).
1417

1518
## [3.4.8] - 2023-03-06
1619
### Changed
@@ -485,7 +488,8 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt
485488
- `moodle-plugin-ci shifter` command. Run YUI Shifter on plugin YUI modules.
486489
- `moodle-plugin-ci csslint` command. Lints the CSS files in the plugin.
487490

488-
[Unreleased]: https://github.com/moodlehq/moodle-plugin-ci/compare/3.4.8...3.x
491+
[Unreleased]: https://github.com/moodlehq/moodle-plugin-ci/compare/3.4.9...3.x
492+
[3.4.9]: https://github.com/moodlehq/moodle-plugin-ci/compare/3.4.8...3.4.9
489493
[3.4.8]: https://github.com/moodlehq/moodle-plugin-ci/compare/3.4.7...3.4.8
490494
[3.4.7]: https://github.com/moodlehq/moodle-plugin-ci/compare/3.4.6...3.4.7
491495
[3.4.6]: https://github.com/moodlehq/moodle-plugin-ci/compare/3.4.5...3.4.6

docs/CLI.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1358,7 +1358,7 @@ Run Moodle CodeSniffer standard on a plugin
13581358

13591359
### Usage
13601360

1361-
* `phpcs [-s|--standard STANDARD] [--max-warnings MAX-WARNINGS] [--] <plugin>`
1361+
* `phpcs [-s|--standard STANDARD] [--max-warnings MAX-WARNINGS] [--test-version TEST-VERSION] [--] <plugin>`
13621362
* `codechecker`
13631363

13641364
Run Moodle CodeSniffer standard on a plugin
@@ -1393,6 +1393,15 @@ Number of warnings to trigger nonzero exit code - default: -1
13931393
* Is multiple: no
13941394
* Default: `-1`
13951395

1396+
#### `--test-version`
1397+
1398+
Version or range of version to test with PHPCompatibility
1399+
1400+
* Accept value: yes
1401+
* Is value required: yes
1402+
* Is multiple: no
1403+
* Default: `0`
1404+
13961405
#### `--help|-h`
13971406

13981407
Display this help message

0 commit comments

Comments
 (0)