Skip to content

Commit 8d18a8b

Browse files
committed
prepared the 2.14.6 release
1 parent 462df51 commit 8d18a8b

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

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

44
This file contains changelogs for stable releases only.
55

6+
Changelog for v2.14.6
7+
---------------------
8+
9+
* bug #4533 Revert PHP7.4 - Add "str_split" => "mb_str_split" mapping (keradus)
10+
* minor #4264 DX: AutoReview - ensure Travis handle all needed PHP versions (keradus)
11+
* minor #4524 MethodArgumentSpaceFixerTest - make explicit configuration to prevent fail on configuration change (keradus)
12+
613
Changelog for v2.14.5
714
---------------------
815

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

@@ -1827,7 +1827,7 @@ Config file
18271827

18281828
Instead of using command line options to customize the rule, you can save the
18291829
project configuration in a ``.php_cs.dist`` file in the root directory of your project.
1830-
The file must return an instance of `PhpCsFixer\\ConfigInterface <https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/v2.14.5/src/ConfigInterface.php>`_
1830+
The file must return an instance of `PhpCsFixer\\ConfigInterface <https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/v2.14.6/src/ConfigInterface.php>`_
18311831
which lets you configure the rules, the files and directories that
18321832
need to be analyzed. You may also create ``.php_cs`` file, which is
18331833
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.14.6-DEV';
38+
const VERSION = '2.14.6';
3939
const VERSION_CODENAME = 'Sunrise';
4040

4141
/**

0 commit comments

Comments
 (0)