Skip to content

Commit 354b4c5

Browse files
committed
Changelog: remove 3.7.2 entries from 3.8.0 changelog
... and update the version number in the Config class.
1 parent b8d7e94 commit 354b4c5

File tree

2 files changed

+3
-32
lines changed

2 files changed

+3
-32
lines changed

package.xml

Lines changed: 2 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ http://pear.php.net/dtd/package-2.0.xsd">
1717
<date>2022-06-18</date>
1818
<time>17:20:00</time>
1919
<version>
20-
<release>3.7.2</release>
21-
<api>3.7.2</api>
20+
<release>3.8.0</release>
21+
<api>3.8.0</api>
2222
</version>
2323
<stability>
2424
<release>stable</release>
@@ -41,11 +41,6 @@ http://pear.php.net/dtd/package-2.0.xsd">
4141
-- Existing code will continue to work but will throw a deprecation error
4242
-- The backwards compatiblity layer will be removed in PHPCS 4.0
4343
-- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
44-
- Newer versions of Composer will now suggest installing PHPCS using require-dev instead of require
45-
-- Thanks to Gary Jones (@GaryJones) for the patch
46-
- A custom Out Of Memory error will now be shown if PHPCS or PHPCBF run out of memory during a run
47-
-- Error message provides actionable information about how to fix the problem and ensures the error is not silent
48-
-- Thanks to Juliette Reinders Folmer (@jrfnl) and Alain Schlesser (@schlessera) for the patch
4944
- When using auto report width (the default) a value of 80 columns will be used if an auto width cannot be determined
5045
-- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
5146
- 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">
6459
-- Squiz.Commenting.FileComment
6560
-- Squiz.Commenting.InlineComment
6661
-- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
67-
- Generic.PHP.LowerCaseType sniff now correctly examines types inside arrow functions
68-
-- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
6962
- PSR2.Classes.PropertyDeclaration now enforces that the readonly modifier comes after the visibility modifier
7063
- PSR2 and PSR12 do not have documented rules for this as they pre-date the readonly modifier
7164
- PSR-PER has been used to confirm the order of this keyword so it can be applied to PSR2 and PSR12 correctly
7265
-- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
7366
- Squiz.Commenting.FunctionComment: new ParamNameUnexpectedAmpersandPrefix error for parameters annotated as passed by reference while the parameter is not passed by reference
7467
-- Thanks to Dan Wallis (@fredden) for the patch
75-
- Squiz.Formatting.OperatorBracket no longer reports false positives in match() structures
7668
- Squiz.PHP.InnerFunctions sniff no longer reports on OO methods for OO structures declared within a function or closure
7769
-- Thanks to @Daimona for the patch
7870
- Documentation has been added for the following sniffs:
@@ -82,27 +74,6 @@ http://pear.php.net/dtd/package-2.0.xsd">
8274
-- Thanks to Atsushi Okui (@blue32a) for the patch
8375
- Fixed bug #3557 : Squiz.Arrays.ArrayDeclaration will now ignore PHP 7.4 array unpacking when determining whether an array is associative
8476
-- Thanks to Volker Dusch (@edorian) for the patch
85-
- Fixed bug #3616 : Squiz.PHP.DisallowComparisonAssignment false positive for PHP 8 match expression
86-
-- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
87-
- Fixed bug #3618 : Generic.WhiteSpace.ArbitraryParenthesesSpacing false positive for return new parent()
88-
-- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
89-
- Fixed bug #3632 : Short list not tokenized correctly in control structures without braces
90-
-- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
91-
- Fixed bug #3639 : Tokenizer not applying tab replacement to heredoc/nowdoc closers
92-
-- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
93-
- Fixed bug #3640 : Generic.WhiteSpace.DisallowTabIndent not reporting errors for PHP 7.3 flexible heredoc/nowdoc syntax
94-
-- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
95-
- Fixed bug #3645 : PHPCS can show 0 exit code when running in parallel even if child process has fatal error
96-
-- Thanks to Alex Panshin (@enl) for the patch
97-
- Fixed bug #3653 : False positives for match() in OperatorSpacingSniff
98-
-- Thanks to Jaroslav Hanslík (@kukulich) for the patch
99-
- Fixed bug #3666 : PEAR.Functions.FunctionCallSignature incorrect indent fix when checking mixed HTML/PHP files
100-
- Fixed bug #3668 : PSR12.Classes.ClassInstantiation.MissingParentheses false positive when instantiating parent classes
101-
-- Similar issues also fixed in Generic.Functions.FunctionCallArgumentSpacing and Squiz.Formatting.OperatorBracket
102-
-- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
103-
- Fixed bug #3672 : Incorrect ScopeIndent.IncorrectExact report for match inside array literal
104-
- Fixed bug #3694 : Generic.WhiteSpace.SpreadOperatorSpacingAfter does not ignore spread operator in PHP 8.1 first class callables
105-
-- Thanks to Juliette Reinders Folmer (@jrfnl) for the patch
10677
- Fixed bug #3717 : Squiz.Commenting.FunctionComment: fixed false positive for InvalidNoReturn when type is never
10778
-- Thanks to Choraimy Kroonstuiver (@axlon) for the patch
10879
- Fixed bug #3722 : Potential "Uninitialized string offset 1" in octal notation backfill

src/Config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class Config
8080
*
8181
* @var string
8282
*/
83-
const VERSION = '3.7.2';
83+
const VERSION = '3.8.0';
8484

8585
/**
8686
* Package stability; either stable, beta or alpha.

0 commit comments

Comments
 (0)