Browse Source

prepared the 3.56.0 release

Dariusz Ruminski 10 months ago
parent
commit
4429303e62
2 changed files with 9 additions and 1 deletions
  1. 8 0
      CHANGELOG.md
  2. 1 1
      src/Console/Application.php

+ 8 - 0
CHANGELOG.md

@@ -3,6 +3,14 @@ CHANGELOG for PHP CS Fixer
 
 This file contains changelogs for stable releases only.
 
+Changelog for v3.56.0
+---------------------
+
+* feat: `TrailingCommaInMultilineFixer` - handle trailing comma in language constructs (#7989)
+* fix: `TrailingCommaInMultilineFixer` - language constructs should be covered by arguments, not parameters (#7990)
+* chore: remove invalid comment (#7987)
+* DX: Cache optimisation (#7985)
+
 Changelog for v3.55.0
 ---------------------
 

+ 1 - 1
src/Console/Application.php

@@ -41,7 +41,7 @@ use Symfony\Component\Console\Output\OutputInterface;
 final class Application extends BaseApplication
 {
     public const NAME = 'PHP CS Fixer';
-    public const VERSION = '3.55.1-DEV';
+    public const VERSION = '3.56.0';
     public const VERSION_CODENAME = '15 Keys Accelerate';
 
     private ToolInfo $toolInfo;