Skip to content

Commit 6e382e1

Browse files
committed
Bump to 20211130 (v3.0.3) - Cyber releasing
1 parent 7888944 commit 6e382e1

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

CHANGES.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
Changes in version 3.0.3 (20211130) - Cyber releasing
2+
-----------------------------------------------------
3+
- Various internal changes and improvements:
4+
- Own conformance with new [PHPUnit naming rules](https://docs.moodle.org/dev/PHPUnit_integration#Actual_.28Moodle_3.11_and_up.29).
5+
- New [MoodleUtil](https://github.com/moodlehq/moodle-local_codechecker/blob/master/moodle/Util/MoodleUtil.php) class to be able to detect Moodle dir root, branch and components (calculated or imported) within code checker. This new awareness will help improving various sniffs.
6+
- Drop some Moodle own < 3.7 testing. Code checker continues supporting Moodle 3.4 and up.
7+
- Improvements to the base test case, now able to automatically verify `phpcbf` fixes.
8+
- Bye, bye to Travis for self-tests. Now relying only on GHA.
9+
- [PR#155](https://github.com/moodlehq/moodle-local_codechecker/pull/155): Make some common errors to be fixable by `phpcbf` (cameron1729).
10+
- [PR#158](https://github.com/moodlehq/moodle-local_codechecker/pull/158): Fixes for the MOODLE_INTERNAL sniff to better detect some allowed exceptions (stronk7).
11+
- [PR#161](https://github.com/moodlehq/moodle-local_codechecker/pull/161): New sniff to follow [PHPUnit files, classes and namespaces naming rules](https://docs.moodle.org/dev/PHPUnit_integration#Actual_.28Moodle_3.11_and_up.29) (stronk7).
12+
113
Changes in version 3.0.2 (20210716) - Summer break
214
--------------------------------------------------
315
- Various internal changes and improvements:

version.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424

2525
defined('MOODLE_INTERNAL') || die;
2626

27-
$plugin->version = 2021071600;
28-
$plugin->release = '3.0.2';
27+
$plugin->version = 2021113000;
28+
$plugin->release = '3.0.3';
2929
$plugin->maturity = MATURITY_STABLE;
3030
$plugin->requires = 2017111300; // Moodle 3.4 release and upwards.
3131
$plugin->component = 'local_codechecker';

0 commit comments

Comments
 (0)