Skip to content

Commit 78a820c

Browse files
committed
prepared the 1.12.3 release
1 parent feee833 commit 78a820c

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

CHANGELOG.md

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

44
This file contains changelogs for stable releases only.
55

6+
Changelog for v1.12.3
7+
---------------------
8+
9+
* bug #2155 ClassDefinitionFixer - overhaul (SpacePossum)
10+
* bug #2187 MultipleUseFixer - Fix handling comments (SpacePossum)
11+
* bug #2209 LinefeedFixer - Fix in a safe way (SpacePossum)
12+
* bug #2228 NoEmptyLinesAfterPhpdocs, SingleBlankLineBeforeNamespace - Fix priority (SpacePossum)
13+
* bug #2230 FunctionDeclarationFixer - Fix T_USE case (SpacePossum)
14+
* bug #2232 Add a test for style of varaible decalration : var (daiglej)
15+
* bug #2246 Fix itest requirements (keradus)
16+
* minor #2238 .gitattributes - specified line endings (keradus)
17+
* minor #2239 IntegrationCase - no longer internal (keradus)
18+
619
Changelog for v1.12.2
720
---------------------
821

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ your system:
3030

3131
.. code-block:: bash
3232
33-
$ wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v1.12.2/php-cs-fixer.phar -O php-cs-fixer
33+
$ wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v1.12.3/php-cs-fixer.phar -O php-cs-fixer
3434
3535
or with curl:
3636

3737
.. code-block:: bash
3838
39-
$ curl -L https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v1.12.2/php-cs-fixer.phar -o php-cs-fixer
39+
$ curl -L https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v1.12.3/php-cs-fixer.phar -o php-cs-fixer
4040
4141
then:
4242

@@ -735,7 +735,7 @@ scanned by the tool when run in the directory of your project. It is useful for
735735
projects that follow a well-known directory structures (like for Symfony
736736
projects for instance).
737737

738-
.. _php-cs-fixer.phar: https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v1.12.2/php-cs-fixer.phar
738+
.. _php-cs-fixer.phar: https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v1.12.3/php-cs-fixer.phar
739739
.. _Atom: https://github.com/Glavin001/atom-beautify
740740
.. _NetBeans: http://plugins.netbeans.org/plugin/49042/php-cs-fixer
741741
.. _PhpStorm: http://tzfrs.de/2015/01/automatically-format-code-to-match-psr-standards-with-phpstorm

Symfony/CS/Fixer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*/
2626
class Fixer
2727
{
28-
const VERSION = '1.12.3-DEV';
28+
const VERSION = '1.12.3';
2929

3030
protected $fixers = array();
3131
protected $configs = array();

0 commit comments

Comments
 (0)