Skip to content

Commit a1ebeac

Browse files
committed
prepared the 2.12.7 release
1 parent 48759f3 commit a1ebeac

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,26 @@ CHANGELOG for PHP CS Fixer
33

44
This file contains changelogs for stable releases only.
55

6+
Changelog for v2.12.7
7+
---------------------
8+
9+
* bug #4240 ModernizeTypesCastingFixer - fix for operators with higher precedence (kubawerlos)
10+
* bug #4254 PhpUnitDedicateAssertFixer - fix for count with additional operations (kubawerlos)
11+
* bug #4260 Psr0Fixer and Psr4Fixer - fix for multiple classes in file with anonymous class (kubawerlos)
12+
* bug #4262 FixCommand - fix help (keradus)
13+
* bug #4276 MethodChainingIndentationFixer, ArrayIndentationFixer - Fix priority issue (dmvdbrugge)
14+
* bug #4280 MethodArgumentSpaceFixer - Fix method argument alignment (Billz95)
15+
* bug #4286 IncrementStyleFixer - fix for static statement (kubawerlos)
16+
* bug #4291 ArrayIndentationFixer - Fix indentation after trailing spaces (julienfalque, keradus)
17+
* bug #4292 NoSuperfluousPhpdocTagsFixer - Make null only type not considered superfluous (julienfalque)
18+
* minor #4204 DX: Tokens - do not unregister/register found tokens when collection is not changing (kubawerlos)
19+
* minor #4235 DX: more specific @param types (kubawerlos)
20+
* minor #4263 DX: AppVeyor - bump PHP version (keradus)
21+
* minor #4293 Add official support for PHP 7.3 (keradus)
22+
* minor #4295 DX: MethodArgumentSpaceFixerTest - fix edge case for handling different line ending when only expected code is provided (keradus)
23+
* minor #4296 DX: cleanup testing with fixer config (keradus)
24+
* minor #4299 NativeFunctionInvocationFixer - add array_key_exists (deguif, keradus)
25+
626
Changelog for v2.12.6
727
---------------------
828

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ or with specified version:
4646

4747
.. code-block:: bash
4848
49-
$ wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.12.6/php-cs-fixer.phar -O php-cs-fixer
49+
$ wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.12.7/php-cs-fixer.phar -O php-cs-fixer
5050
5151
or with curl:
5252

@@ -1750,7 +1750,7 @@ Config file
17501750

17511751
Instead of using command line options to customize the rule, you can save the
17521752
project configuration in a ``.php_cs.dist`` file in the root directory of your project.
1753-
The file must return an instance of `PhpCsFixer\\ConfigInterface <https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/v2.12.6/src/ConfigInterface.php>`_
1753+
The file must return an instance of `PhpCsFixer\\ConfigInterface <https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/v2.12.7/src/ConfigInterface.php>`_
17541754
which lets you configure the rules, the files and directories that
17551755
need to be analyzed. You may also create ``.php_cs`` file, which is
17561756
the local configuration that will be used instead of the project configuration. It

src/Console/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
*/
3636
final class Application extends BaseApplication
3737
{
38-
const VERSION = '2.12.7-DEV';
38+
const VERSION = '2.12.7';
3939
const VERSION_CODENAME = 'Long Journey';
4040

4141
/**

0 commit comments

Comments
 (0)