Skip to content

Commit d69fb62

Browse files
committed
prepared the 2.15.7 release
1 parent c2bc21b commit d69fb62

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

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

44
This file contains changelogs for stable releases only.
55

6+
Changelog for v2.15.7
7+
---------------------
8+
9+
* bug #4915 Fix handling property PHPDocs with unsupported type (julienfalque)
10+
* minor #4916 Fix AppVeyor build (julienfalque)
11+
* minor #4917 CircleCI - Bump xcode to 11.4 (GrahamCampbell)
12+
* minor #4918 DX: do not fix ".phpt" files by default (kubawerlos)
13+
614
Changelog for v2.15.6
715
---------------------
816

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

@@ -1922,7 +1922,7 @@ Config file
19221922

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

4141
/**

0 commit comments

Comments
 (0)