Skip to content

Commit 83baf82

Browse files
committed
prepared the 2.16.3 release
1 parent 316c2e7 commit 83baf82

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

@@ -2011,7 +2011,7 @@ Config file
20112011

20122012
Instead of using command line options to customize the rule, you can save the
20132013
project configuration in a ``.php_cs.dist`` file in the root directory of your project.
2014-
The file must return an instance of `PhpCsFixer\\ConfigInterface <https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/v2.16.2/src/ConfigInterface.php>`_
2014+
The file must return an instance of `PhpCsFixer\\ConfigInterface <https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/v2.16.3/src/ConfigInterface.php>`_
20152015
which lets you configure the rules, the files and directories that
20162016
need to be analyzed. You may also create ``.php_cs`` file, which is
20172017
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.16.3-DEV';
38+
const VERSION = '2.16.3';
3939
const VERSION_CODENAME = 'Yellow Bird';
4040

4141
/**

0 commit comments

Comments
 (0)