Skip to content

Commit

Permalink
Merge pull request #214 from stronk7/moodle-cs_bump_v3.3.2
Browse files Browse the repository at this point in the history
Bump to moodle-cs v3.3.2
  • Loading branch information
paulholden authored Feb 13, 2023
2 parents 1a5f491 + c310598 commit abd5566
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
7 changes: 6 additions & 1 deletion MoodleCS/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt

## [Unreleased]

## [v3.3.2] - 2023-02-13
### Added
- Check for one (and only one) space before assignment operator @ `Squiz.WhiteSpace.OperatorSpacing`

## [v3.3.1] - 2023-01-19
### Fixed
- Updated the outdated list of valid magic methods.
Expand All @@ -32,7 +36,8 @@ All features are maintained and no new features have been introduced to either t

All the details about [previous releases] can be found in [local_codechecker](https://github.com/moodlehq/moodle-local_codechecker) own change log.

[Unreleased]: https://github.com/moodlehq/moodle-cs/compare/v3.3.1...main
[Unreleased]: https://github.com/moodlehq/moodle-cs/compare/v3.3.2...main
[v3.3.2]: https://github.com/moodlehq/moodle-cs/compare/v3.3.1...v3.3.2
[v3.3.1]: https://github.com/moodlehq/moodle-cs/compare/v3.3.0...v3.3.1
[v3.3.0]: https://github.com/moodlehq/moodle-cs/compare/v3.2.0...v3.3.0
[Previous releases]: https://github.com/moodlehq/moodle-local_codechecker/blob/master/CHANGES.md#changes-in-version-400-20220825---welcome-moodle-cs
1 change: 1 addition & 0 deletions MoodleCS/moodle/ruleset.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
<rule ref="Squiz.WhiteSpace.OperatorSpacing">
<properties>
<property name="ignoreNewlines" value="true"/>
<property name="ignoreSpacingBeforeAssignments" value="false" />
</properties>
</rule>
<rule ref="Squiz.WhiteSpace.ObjectOperatorSpacing">
Expand Down
2 changes: 1 addition & 1 deletion readme_moodle.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Instructions to upgrade the moodle-cs bundled version:

Current checkout:

3.3.1 (e475bde)
3.3.2 (f1f5538)

Local modifications (only allowed if there is a PR upstream backing it):

Expand Down
2 changes: 1 addition & 1 deletion thirdpartylibs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<library>
<location>MoodleCS</location>
<name>Moodle Coding Style</name>
<version>v3.3.1 (e475bde)</version>
<version>v3.3.2 (f1f5538)</version>
<license>GPL</license>
<licenseversion>3</licenseversion>
</library>
Expand Down
8 changes: 4 additions & 4 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@

defined('MOODLE_INTERNAL') || die;

$plugin->version = 2023012000;;
$plugin->release = '4.0.2';
$plugin->maturity = MATURITY_STABLE;
$plugin->requires = 2019052000; // Moodle 3.7 release and upwards.
$plugin->version = 2023012000;;
$plugin->release = '4.0.2';
$plugin->maturity = MATURITY_STABLE;
$plugin->requires = 2019052000; // Moodle 3.7 release and upwards.
$plugin->component = 'local_codechecker';

0 comments on commit abd5566

Please sign in to comment.