diff --git a/MoodleCS/CHANGELOG.md b/MoodleCS/CHANGELOG.md
index 59aa08af..02a7b19c 100644
--- a/MoodleCS/CHANGELOG.md
+++ b/MoodleCS/CHANGELOG.md
@@ -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.
@@ -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
diff --git a/MoodleCS/moodle/ruleset.xml b/MoodleCS/moodle/ruleset.xml
index 059922cb..28ed5b25 100644
--- a/MoodleCS/moodle/ruleset.xml
+++ b/MoodleCS/moodle/ruleset.xml
@@ -73,6 +73,7 @@
+
diff --git a/readme_moodle.txt b/readme_moodle.txt
index 434f37be..4d15f49e 100644
--- a/readme_moodle.txt
+++ b/readme_moodle.txt
@@ -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):
diff --git a/thirdpartylibs.xml b/thirdpartylibs.xml
index c6a57cd2..8e257dee 100644
--- a/thirdpartylibs.xml
+++ b/thirdpartylibs.xml
@@ -24,7 +24,7 @@
MoodleCS
Moodle Coding Style
- v3.3.1 (e475bde)
+ v3.3.2 (f1f5538)
GPL
3
diff --git a/version.php b/version.php
index e67135b2..65f062ad 100644
--- a/version.php
+++ b/version.php
@@ -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';