Skip to content

Commit c9d30fd

Browse files
committed
prepared the 2.15.2 release
1 parent f14480f commit c9d30fd

File tree

3 files changed

+30
-4
lines changed

3 files changed

+30
-4
lines changed

CHANGELOG.md

Lines changed: 27 additions & 1 deletion
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.15.2
7+
---------------------
8+
9+
* bug #4132 BlankLineAfterNamespaceFixer - do not remove indent, handle comments (kubawerlos)
10+
* bug #4384 MethodArgumentSpaceFixer - fix for on_multiline:ensure_fully_multiline with trailing comma in function call (kubawerlos)
11+
* bug #4404 FileLintingIterator - fix current value on end/invalid (SpacePossum)
12+
* bug #4421 FunctionTypehintSpaceFixer - Ensure single space between type declaration and parameter (localheinz)
13+
* bug #4436 MethodArgumentSpaceFixer - handle misplaced ) (keradus)
14+
* bug #4439 NoLeadingImportSlashFixer - Add space if needed (SpacePossum)
15+
* bug #4440 SimpleToComplexStringVariableFixer - Fix $ bug (dmvdbrugge)
16+
* bug #4453 Fix preg_match error on 7.4snapshot (kubawerlos)
17+
* bug #4461 IsNullFixer - fix null coalescing operator handling (linniksa)
18+
* bug #4467 ToolInfo - fix access to reference without checking existence (black-silence)
19+
* bug #4472 Fix non-static closure unbinding this on PHP 7.4 (kelunik)
20+
* minor #3726 Use Box 3 to build the PHAR (theofidry, keradus)
21+
* minor #4412 PHP 7.4 - Tests for support (SpacePossum)
22+
* minor #4431 DX: test that default config is not passed in RuleSet (kubawerlos)
23+
* minor #4433 DX: test to ensure @PHPUnitMigration rule sets are correctly defined (kubawerlos)
24+
* minor #4445 DX: static call of markTestSkippedOrFail (kubawerlos)
25+
* minor #4463 Add apostrophe to possessive "team's" (ChandlerSwift)
26+
* minor #4471 ReadmeCommandTest - use CommandTester (kubawerlos)
27+
* minor #4477 DX: control names of public methods in test's classes (kubawerlos)
28+
* minor #4483 NewWithBracesFixer - Fix object operator and curly brace open cases (SpacePossum)
29+
* minor #4484 fix typos in README (Sven Ludwig)
30+
* minor #4494 DX: Fix shell script syntax in order to fix Travis builds (drupol)
31+
* minor #4516 DX: Lock binary SCA tools versions (keradus)
32+
633
Changelog for v2.15.1
734
---------------------
835

@@ -65,7 +92,6 @@ Changelog for v2.14.5
6592
* minor #4494 DX: Fix shell script syntax in order to fix Travis builds (drupol)
6693
* minor #4516 DX: Lock binary SCA tools versions (keradus)
6794

68-
6995
Changelog for v2.14.4
7096
---------------------
7197

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.15.1/php-cs-fixer.phar -O php-cs-fixer
49+
$ wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.15.2/php-cs-fixer.phar -O php-cs-fixer
5050
5151
or with curl:
5252

@@ -1903,7 +1903,7 @@ Config file
19031903

19041904
Instead of using command line options to customize the rule, you can save the
19051905
project configuration in a ``.php_cs.dist`` file in the root directory of your project.
1906-
The file must return an instance of `PhpCsFixer\\ConfigInterface <https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/v2.15.1/src/ConfigInterface.php>`_
1906+
The file must return an instance of `PhpCsFixer\\ConfigInterface <https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/v2.15.2/src/ConfigInterface.php>`_
19071907
which lets you configure the rules, the files and directories that
19081908
need to be analyzed. You may also create ``.php_cs`` file, which is
19091909
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.15.2-DEV';
38+
const VERSION = '2.15.2';
3939
const VERSION_CODENAME = 'Europe Round';
4040

4141
/**

0 commit comments

Comments
 (0)