Skip to content

Commit bc4898f

Browse files
committed
prepared the 2.14.5 release
1 parent 48512e1 commit bc4898f

File tree

3 files changed

+29
-3
lines changed

3 files changed

+29
-3
lines changed

CHANGELOG.md

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

44
This file contains changelogs for stable releases only.
55

6+
Changelog for v2.14.5
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 #4453 Fix preg_match error on 7.4snapshot (kubawerlos)
16+
* bug #4461 IsNullFixer - fix null coalescing operator handling (linniksa)
17+
* bug #4467 ToolInfo - fix access to reference without checking existence (black-silence)
18+
* bug #4472 Fix non-static closure unbinding this on PHP 7.4 (kelunik)
19+
* minor #3726 Use Box 3 to build the PHAR (theofidry, keradus)
20+
* minor #4412 PHP 7.4 - Tests for support (SpacePossum)
21+
* minor #4431 DX: test that default config is not passed in RuleSet (kubawerlos)
22+
* minor #4433 DX: test to ensure @PHPUnitMigration rule sets are correctly defined (kubawerlos)
23+
* minor #4445 DX: static call of markTestSkippedOrFail (kubawerlos)
24+
* minor #4463 Add apostrophe to possessive "team's" (ChandlerSwift)
25+
* minor #4471 ReadmeCommandTest - use CommandTester (kubawerlos)
26+
* minor #4477 DX: control names of public methods in test's classes (kubawerlos)
27+
* minor #4483 NewWithBracesFixer - Fix object operator and curly brace open cases (SpacePossum)
28+
* minor #4484 fix typos in README (Sven Ludwig)
29+
* minor #4494 DX: Fix shell script syntax in order to fix Travis builds (drupol)
30+
* minor #4516 DX: Lock binary SCA tools versions (keradus)
31+
632
Changelog for v2.14.4
733
---------------------
834

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

4141
/**

0 commit comments

Comments
 (0)