Skip to content

Commit b788ea0

Browse files
committed
prepared the 2.14.0 release
1 parent e3f86ad commit b788ea0

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

CHANGELOG.md

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

44
This file contains changelogs for stable releases only.
55

6+
Changelog for v2.14.0
7+
---------------------
8+
9+
* bug #4220 NativeFunctionInvocationFixer - namespaced strict to remove backslash (kubawerlos)
10+
* feature #3881 Add PhpdocVarAnnotationCorrectOrderFixer (kubawerlos)
11+
* feature #3915 Add HeredocIndentationFixer (gharlan)
12+
* feature #4002 NoSuperfluousPhpdocTagsFixer - Allow `mixed` in superfluous PHPDoc by configuration (MortalFlesh)
13+
* feature #4030 Add get_required_files and user_error aliases (ntzm)
14+
* feature #4043 NativeFunctionInvocationFixer - add option to remove redundant backslashes (kubawerlos)
15+
* feature #4102 Add NoUnsetCastFixer (SpacePossum)
16+
* minor #4025 Add phpdoc_types_order rule to Symfony's ruleset (carusogabriel)
17+
* minor #4213 [7.3] PHP7.3 integration tests (SpacePossum)
18+
* minor #4233 Add official support for PHP 7.3 (keradus)
19+
620
Changelog for v2.13.3
721
---------------------
822

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.13.3/php-cs-fixer.phar -O php-cs-fixer
49+
$ wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.14.0/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.13.3/src/ConfigInterface.php>`_
1830+
The file must return an instance of `PhpCsFixer\\ConfigInterface <https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/v2.14.0/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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
*/
3636
final class Application extends BaseApplication
3737
{
38-
const VERSION = '2.14.0-DEV';
39-
const VERSION_CODENAME = '';
38+
const VERSION = '2.14.0';
39+
const VERSION_CODENAME = 'Sunrise';
4040

4141
/**
4242
* @var ToolInfo

0 commit comments

Comments
 (0)