From 12dbcd1462f1e3a5a96c6c7398af26b28e092a8a Mon Sep 17 00:00:00 2001 From: Dariusz Ruminski Date: Mon, 12 Oct 2015 22:13:03 +0200 Subject: [PATCH] prepared the 1.10.1 release --- CHANGELOG.md | 15 +++++++++++++++ Symfony/CS/Fixer.php | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ff63d6c9d5..39ea690cf56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,21 @@ CHANGELOG for PHP CS Fixer This file contains changelogs for stable releases only. +Changelog for v1.10.1 +--------------------- + +* bug #1424 Fixed the import fixer priorities (GrahamCampbell) +* bug #1444 OrderedUseFixer - fix next case (keradus) +* bug #1441 BracesFixer - fix next case (keradus) +* bug #1422 AlignDoubleArrowFixer - fix handling of nested array (SpacePossum) +* bug #1425 PhpdocInlineTagFixerTest - fix case when met inalid PHPDoc (keradus) +* bug #1419 AlignDoubleArrowFixer, AlignEqualsFixer - fix priorities (keradus) +* bug #1415 BlanklineAfterOpenTagFixer - Do not add a line break if there is one already. (SpacePossum) +* bug #1410 PhpdocIndentFixer - Fix for open tag (SpacePossum) +* bug #1401 PhpdocVarWithoutNameFixer - Fixed the var without name fixer for inline docs (keradus, GrahamCampbell) +* bug #1369 Fix not well-formed XML output (junichi11) +* bug #1356 Psr0Fixer - disallow run on StdinFileInfo (keradus) + Changelog for v1.10 ------------------- diff --git a/Symfony/CS/Fixer.php b/Symfony/CS/Fixer.php index 0381e7711e0..462c71cd662 100644 --- a/Symfony/CS/Fixer.php +++ b/Symfony/CS/Fixer.php @@ -24,7 +24,7 @@ */ class Fixer { - const VERSION = '1.10.1-DEV'; + const VERSION = '1.10.1'; protected $fixers = array(); protected $configs = array();