Browse Source

prepared the 1.12.2 release

Dariusz Ruminski 8 years ago
parent
commit
baa7112bef
3 changed files with 18 additions and 4 deletions
  1. 14 0
      CHANGELOG.md
  2. 3 3
      README.rst
  3. 1 1
      Symfony/CS/Fixer.php

+ 14 - 0
CHANGELOG.md

@@ -3,6 +3,20 @@ CHANGELOG for PHP CS Fixer
 
 This file contains changelogs for stable releases only.
 
+Changelog for v1.12.2
+---------------------
+
+* bug #2191 PhpdocToCommentFixer - fix false positive for docblock of variable (keradus)
+* bug #2193 UnneededControlParenthesesFixer - Fix more return cases. (SpacePossum)
+* bug #2198 FileCacheManager - fix exception message and undefined property (j0k3r)
+* minor #2170 Add dollar sign prefix for consistency (bcremer)
+* minor #2190 .travis.yml - improve Travis speed for tags (keradus)
+* minor #2196 PhpdocTypesFixer - support iterable type (GrahamCampbell)
+* minor #2197 Update cookbook and readme (g105b, SpacePossum)
+* minor #2203 README.rst - change formatting (ro0NL)
+* minor #2204 FixCommand - clean unused var (keradus)
+* minor #2205 Add integration test for iterable type (keradus)
+
 Changelog for v1.12.1
 ---------------------
 

+ 3 - 3
README.rst

@@ -30,13 +30,13 @@ your system:
 
 .. code-block:: bash
 
-    $ wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v1.12.1/php-cs-fixer.phar -O php-cs-fixer
+    $ wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v1.12.2/php-cs-fixer.phar -O php-cs-fixer
 
 or with curl:
 
 .. code-block:: bash
 
-    $ curl -L https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v1.12.1/php-cs-fixer.phar -o php-cs-fixer
+    $ curl -L https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v1.12.2/php-cs-fixer.phar -o php-cs-fixer
 
 then:
 
@@ -735,7 +735,7 @@ scanned by the tool when run in the directory of your project. It is useful for
 projects that follow a well-known directory structures (like for Symfony
 projects for instance).
 
-.. _php-cs-fixer.phar: https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v1.12.1/php-cs-fixer.phar
+.. _php-cs-fixer.phar: https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v1.12.2/php-cs-fixer.phar
 .. _Atom:              https://github.com/Glavin001/atom-beautify
 .. _NetBeans:          http://plugins.netbeans.org/plugin/49042/php-cs-fixer
 .. _PhpStorm:          http://tzfrs.de/2015/01/automatically-format-code-to-match-psr-standards-with-phpstorm

+ 1 - 1
Symfony/CS/Fixer.php

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