Browse Source

prepared the 1.11.3 release

Dariusz Ruminski 8 years ago
parent
commit
b0a383d856
2 changed files with 10 additions and 1 deletions
  1. 9 0
      CHANGELOG.md
  2. 1 1
      Symfony/CS/Fixer.php

+ 9 - 0
CHANGELOG.md

@@ -3,6 +3,15 @@ CHANGELOG for PHP CS Fixer
 
 This file contains changelogs for stable releases only.
 
+Changelog for v1.11.3
+---------------------
+
+* bug #1868 NewWithBracesFixer - fix handling more neighbor tokens (keradus)
+* bug #1893 BracesFixer - handle comments inside lambda function prototype (keradus)
+* bug #1806 SelfAccessorFixer - skip anonymous classes (gharlan)
+* bug #1813 BlanklineAfterOpenTagFixer, NoBlankLinesBeforeNamespaceFixer - fix priority (SpacePossum)
+* minor #1807 Tokens - simplify isLambda() (gharlan)
+
 Changelog for v1.11.2
 ---------------------
 

+ 1 - 1
Symfony/CS/Fixer.php

@@ -24,7 +24,7 @@ use Symfony\CS\Tokenizer\Tokens;
  */
 class Fixer
 {
-    const VERSION = '1.11.3-DEV';
+    const VERSION = '1.11.3';
 
     protected $fixers = array();
     protected $configs = array();