Dariusz Ruminski 8 лет назад
Родитель
Сommit
2c69f4d424
3 измененных файлов с 24 добавлено и 4 удалено
  1. 20 0
      CHANGELOG.md
  2. 3 3
      README.rst
  3. 1 1
      src/Console/Application.php

+ 20 - 0
CHANGELOG.md

@@ -3,6 +3,26 @@ CHANGELOG for PHP CS Fixer
 
 This file contains changelogs for stable releases only.
 
+Changelog for v2.1.0
+--------------------
+
+* feature #2124 Add TernaryToNullCoalescingFixer (Slamdunk, SpacePossum)
+* feature #2280 Configurable OrderedImportsFixer (DarkaOnLine)
+* feature #2351 Enhancement: Allow to configure return_type_declaration rule (localheinz)
+* feature #2359 Add PhpdocNoUselessInheritdocFixer (SpacePossum, keradus)
+* feature #2414 Add PhpdocReturnSelfReferenceFixer (SpacePossum)
+* feature #2415 Add IsNullFixer (kalessil, keradus)
+* feature #2421 BracesFixer - Add allow_single_line_closure configuration (keradus)
+* feature #2461 PhpdocNoUselessInheritdocFixer - support multiline docblock (keradus)
+* feature #2462 Add NativeFunctionInvocationFixer (localheinz, keradus, Slamdunk)
+* feature #2478 DeclareEqualNormalizeFixer - Add config option (SpacePossum)
+* feature #2494 FixCommand - Support rules with params (ptcong, keradus)
+* minor #2452 Provide rules definitions (keradus)
+* minor #2460 RuleSet - extend Symfony (keradus)
+* minor #2483 DX: AbstractIntegrationTestCase does not use IntegrationCase::shouldCheckPriority, logic is now automated and method is now deprecated (keradus)
+* minor #2488 IsNullFixer - Fix bug when calling without params (SpacePossum)
+* minor #2519 remove trailing whitespace (keradus)
+
 Changelog for v2.0.1
 --------------------
 

+ 3 - 3
README.rst

@@ -30,13 +30,13 @@ your system:
 
 .. code-block:: bash
 
-    $ wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.0.1/php-cs-fixer.phar -O php-cs-fixer
+    $ wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.1.0/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/v2.0.1/php-cs-fixer.phar -o php-cs-fixer
+    $ curl -L https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.1.0/php-cs-fixer.phar -o php-cs-fixer
 
 then:
 
@@ -831,7 +831,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/v2.0.1/php-cs-fixer.phar
+.. _php-cs-fixer.phar: https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.1.0/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
src/Console/Application.php

@@ -26,7 +26,7 @@ use Symfony\Component\Console\Application as BaseApplication;
  */
 final class Application extends BaseApplication
 {
-    const VERSION = '2.1.0-DEV';
+    const VERSION = '2.1.0';
 
     /**
      * Constructor.