Browse Source

prepared the 3.27.0 release

Dariusz Ruminski 1 year ago
parent
commit
e73ccaae12
2 changed files with 14 additions and 2 deletions
  1. 12 0
      CHANGELOG.md
  2. 2 2
      src/Console/Application.php

+ 12 - 0
CHANGELOG.md

@@ -3,6 +3,18 @@ CHANGELOG for PHP CS Fixer
 
 This file contains changelogs for stable releases only.
 
+Changelog for v3.27.0
+---------------------
+
+* docs: cleanup old mention of `--show-progress=estimating` in docs (#7287)
+* DX: add Composer script for applying CS fixes in parallel (#7274)
+* feat: Clone PER-CS1.0 to PER-CS2.0 to prepare for adding new rules (#7249)
+* feat: Introduce `LongToShorthandOperatorFixer` (#7295)
+* feat: Mark PER-CS v1 as deprecated (#7283)
+* feat: Move `single_line_empty_body` to `@PER-CS2.0` (#7282)
+* fix: Priorities for fixers related to curly braces, empty lines and trailing whitespace (#7296)
+* fix: `OrderedTraitsFixer` - better support for multiple traits in one `use` statement (#7289)
+
 Changelog for v3.26.1
 ---------------------
 

+ 2 - 2
src/Console/Application.php

@@ -39,8 +39,8 @@ use Symfony\Component\Console\Output\OutputInterface;
  */
 final class Application extends BaseApplication
 {
-    public const VERSION = '3.26.2-DEV';
-    public const VERSION_CODENAME = 'Crank Cake';
+    public const VERSION = '3.27.0';
+    public const VERSION_CODENAME = 'Jump & Run';
 
     private ToolInfo $toolInfo;