Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to moodle-cs v3.3.2 #214

Merged
merged 1 commit into from
Feb 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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';