Skip to content

Commit 2006451

Browse files
committed
prepared the 2.15.1 release
1 parent 5767fbc commit 2006451

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

CHANGELOG.md

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

44
This file contains changelogs for stable releases only.
55

6+
Changelog for v2.15.1
7+
---------------------
8+
9+
* bug #4418 PhpUnitNamespacedFixer - properly translate classes which do not follow translation pattern (ktomk)
10+
* bug #4419 PhpUnitTestCaseStaticMethodCallsFixer - skip anonymous classes and lambda (SpacePossum)
11+
* bug #4420 MethodArgumentSpaceFixer - PHP7.3 trailing commas in function calls (SpacePossum)
12+
* minor #4345 Travis: PHP 7.4 isn't allowed to fail anymore (Slamdunk)
13+
* minor #4403 LowercaseStaticReferenceFixer - Fix invalid PHP version in example (HypeMC)
14+
* minor #4424 DX: cleanup of composer.json - no need for branch-alias (keradus)
15+
* minor #4425 DX: assertions are static, adjust custom assertions (keradus)
16+
* minor #4426 DX: handle deprecations of symfony/event-dispatcher:4.3 (keradus)
17+
* minor #4427 DX: stop using reserved T_FN in code samples (keradus)
18+
* minor #4428 DX: update dev-tools (keradus)
19+
* minor #4429 DX: MethodArgumentSpaceFixerTest - fix hidden merge conflict (keradus)
20+
621
Changelog for v2.15.0
722
---------------------
823

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.0/php-cs-fixer.phar -O php-cs-fixer
49+
$ wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.15.1/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.0/src/ConfigInterface.php>`_
1906+
The file must return an instance of `PhpCsFixer\\ConfigInterface <https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/v2.15.1/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.1-DEV';
38+
const VERSION = '2.15.1';
3939
const VERSION_CODENAME = 'Europe Round';
4040

4141
/**

0 commit comments

Comments
 (0)