Skip to content

Commit f3241a9

Browse files
committed
prepared the 2.12.6 release
1 parent c3ad3d8 commit f3241a9

File tree

3 files changed

+30
-3
lines changed

3 files changed

+30
-3
lines changed

CHANGELOG.md

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

44
This file contains changelogs for stable releases only.
55

6+
Changelog for v2.12.6
7+
---------------------
8+
9+
* bug #4216 Psr4Fixer - fix for multiple classy elements in file (keradus, kubawerlos)
10+
* bug #4217 Psr0Fixer - class with anonymous class (kubawerlos)
11+
* bug #4219 NativeFunctionCasingFixer - handle T_RETURN_REF (kubawerlos)
12+
* bug #4224 FunctionToConstantFixer - handle T_RETURN_REF (SpacePossum)
13+
* bug #4229 IsNullFixer - fix parenthesis not closed (guilliamxavier)
14+
* minor #4198 [7.3] PowToExponentiationFixer - adding to PHP7.3 integration test (kubawerlos)
15+
* minor #4199 [7.3] MethodChainingIndentationFixer - add tests for PHP 7.3 (kubawerlos)
16+
* minor #4200 [7.3] ModernizeTypesCastingFixer - support PHP 7.3 (kubawerlos)
17+
* minor #4201 [7.3] MultilineWhitespaceBeforeSemicolonsFixer - add tests for PHP 7.3 (kubawerlos)
18+
* minor #4202 [7.3] ErrorSuppressionFixer - support PHP 7.3 (kubawerlos)
19+
* minor #4205 DX: PhpdocAlignFixer - refactor to use DocBlock (kubawerlos)
20+
* minor #4206 DX: enable multiline_whitespace_before_semicolons (keradus)
21+
* minor #4207 [7.3] RandomApiMigrationFixerTest - tests for 7.3 (SpacePossum)
22+
* minor #4208 [7.3] NativeFunctionCasingFixerTest - tests for 7.3 (SpacePossum)
23+
* minor #4209 [7.3] PhpUnitStrictFixerTest - tests for 7.3 (SpacePossum)
24+
* minor #4210 [7.3] PhpUnitConstructFixer - add test for PHP 7.3 (kubawerlos)
25+
* minor #4211 [7.3] PhpUnitDedicateAssertFixer - support PHP 7.3 (kubawerlos)
26+
* minor #4214 [7.3] NoUnsetOnPropertyFixerTest - tests for 7.3 (SpacePossum)
27+
* minor #4222 [7.3] PhpUnitExpectationFixer - support PHP 7.3 (kubawerlos)
28+
* minor #4223 [7.3] PhpUnitMockFixer - add tests for PHP 7.3 (kubawerlos)
29+
* minor #4230 [7.3] IsNullFixer - fix trailing comma (guilliamxavier)
30+
* minor #4232 DX: remove Utils::splitLines (kubawerlos)
31+
* minor #4234 [7.3] Test that "LITERAL instanceof X" is valid (guilliamxavier)
32+
633
Changelog for v2.12.5
734
---------------------
835

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.5/php-cs-fixer.phar -O php-cs-fixer
49+
$ wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.12.6/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.5/src/ConfigInterface.php>`_
1753+
The file must return an instance of `PhpCsFixer\\ConfigInterface <https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/v2.12.6/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.6-DEV';
38+
const VERSION = '2.12.6';
3939
const VERSION_CODENAME = 'Long Journey';
4040

4141
/**

0 commit comments

Comments
 (0)