diff --git a/package.xml b/package.xml
index 8fbb8961ba..00ecd60554 100644
--- a/package.xml
+++ b/package.xml
@@ -17,8 +17,8 @@ http://pear.php.net/dtd/package-2.0.xsd">
2022-06-18
- 3.7.2
- 3.7.2
+ 3.8.0
+ 3.8.0stable
@@ -41,11 +41,6 @@ http://pear.php.net/dtd/package-2.0.xsd">
-- Existing code will continue to work but will throw a deprecation error
-- The backwards compatiblity layer will be removed in PHPCS 4.0
-- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
- - Newer versions of Composer will now suggest installing PHPCS using require-dev instead of require
- -- Thanks to Gary Jones (@GaryJones) for the patch
- - A custom Out Of Memory error will now be shown if PHPCS or PHPCBF run out of memory during a run
- -- Error message provides actionable information about how to fix the problem and ensures the error is not silent
- -- Thanks to Juliette Reinders Folmer (@jrfnl) and Alain Schlesser (@schlessera) for the patch
- When using auto report width (the default) a value of 80 columns will be used if an auto width cannot be determined
-- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
- Sniff error messages are now more informative to help bugs get reported to the correct project
@@ -64,15 +59,12 @@ http://pear.php.net/dtd/package-2.0.xsd">
-- Squiz.Commenting.FileComment
-- Squiz.Commenting.InlineComment
-- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
- - Generic.PHP.LowerCaseType sniff now correctly examines types inside arrow functions
- -- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
- PSR2.Classes.PropertyDeclaration now enforces that the readonly modifier comes after the visibility modifier
- PSR2 and PSR12 do not have documented rules for this as they pre-date the readonly modifier
- PSR-PER has been used to confirm the order of this keyword so it can be applied to PSR2 and PSR12 correctly
-- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
- Squiz.Commenting.FunctionComment: new ParamNameUnexpectedAmpersandPrefix error for parameters annotated as passed by reference while the parameter is not passed by reference
-- Thanks to Dan Wallis (@fredden) for the patch
- - Squiz.Formatting.OperatorBracket no longer reports false positives in match() structures
- Squiz.PHP.InnerFunctions sniff no longer reports on OO methods for OO structures declared within a function or closure
-- Thanks to @Daimona for the patch
- Documentation has been added for the following sniffs:
@@ -82,27 +74,6 @@ http://pear.php.net/dtd/package-2.0.xsd">
-- Thanks to Atsushi Okui (@blue32a) for the patch
- Fixed bug #3557 : Squiz.Arrays.ArrayDeclaration will now ignore PHP 7.4 array unpacking when determining whether an array is associative
-- Thanks to Volker Dusch (@edorian) for the patch
- - Fixed bug #3616 : Squiz.PHP.DisallowComparisonAssignment false positive for PHP 8 match expression
- -- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
- - Fixed bug #3618 : Generic.WhiteSpace.ArbitraryParenthesesSpacing false positive for return new parent()
- -- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
- - Fixed bug #3632 : Short list not tokenized correctly in control structures without braces
- -- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
- - Fixed bug #3639 : Tokenizer not applying tab replacement to heredoc/nowdoc closers
- -- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
- - Fixed bug #3640 : Generic.WhiteSpace.DisallowTabIndent not reporting errors for PHP 7.3 flexible heredoc/nowdoc syntax
- -- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
- - Fixed bug #3645 : PHPCS can show 0 exit code when running in parallel even if child process has fatal error
- -- Thanks to Alex Panshin (@enl) for the patch
- - Fixed bug #3653 : False positives for match() in OperatorSpacingSniff
- -- Thanks to Jaroslav HanslĂk (@kukulich) for the patch
- - Fixed bug #3666 : PEAR.Functions.FunctionCallSignature incorrect indent fix when checking mixed HTML/PHP files
- - Fixed bug #3668 : PSR12.Classes.ClassInstantiation.MissingParentheses false positive when instantiating parent classes
- -- Similar issues also fixed in Generic.Functions.FunctionCallArgumentSpacing and Squiz.Formatting.OperatorBracket
- -- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
- - Fixed bug #3672 : Incorrect ScopeIndent.IncorrectExact report for match inside array literal
- - Fixed bug #3694 : Generic.WhiteSpace.SpreadOperatorSpacingAfter does not ignore spread operator in PHP 8.1 first class callables
- -- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
- Fixed bug #3717 : Squiz.Commenting.FunctionComment: fixed false positive for InvalidNoReturn when type is never
-- Thanks to Choraimy Kroonstuiver (@axlon) for the patch
- Fixed bug #3722 : Potential "Uninitialized string offset 1" in octal notation backfill
diff --git a/src/Config.php b/src/Config.php
index 8d3fb173e6..1ae4c77ee3 100644
--- a/src/Config.php
+++ b/src/Config.php
@@ -80,7 +80,7 @@ class Config
*
* @var string
*/
- const VERSION = '3.7.2';
+ const VERSION = '3.8.0';
/**
* Package stability; either stable, beta or alpha.