Skip to content

Commit

Permalink
prepared the 1.10 release
Browse files Browse the repository at this point in the history
  • Loading branch information
keradus committed Jul 27, 2015
1 parent 48bb2a6 commit 8e21b4f
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 16 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@ CHANGELOG for PHP CS Fixer

This file contains changelogs for stable releases only.

Changelog for v1.10
-------------------

* feature #1306 Added LogicalNotOperatorsWithSuccessorSpaceFixer (phansys)
* feature #1286 Added PhpUnitConstructFixer (keradus)
* feature #1316 Added PhpdocInlineTagFixer (SpacePossum, keradus)
* feature #1303 Added LogicalNotOperatorsWithSpacesFixer (phansys)
* feature #1279 Added PhpUnitStrictFixer (keradus)
* feature #1267 SingleQuoteFixer fix more use cases (SpacePossum)
* minor #1319 PhpUnitConstructFixer - fix performance and add to local .php_cs (keradus)
* minor #1280 Fix non-utf characters in docs (keradus)
* minor #1274 Cookbook - No change auto-test note (Soullivaneuh)

Changelog for v1.9.3
--------------------

Expand Down
34 changes: 19 additions & 15 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -363,8 +363,8 @@ Choose from the list of available fixers:
subject.

* **phpdoc_inline_tag** [symfony]
Fix PHPDoc inline tags, make
inheritdoc always inline.
Fix PHPDoc inline tags, make
inheritdoc always inline.

* **phpdoc_no_access** [symfony]
@access annotations should be
Expand Down Expand Up @@ -527,15 +527,16 @@ Choose from the list of available fixers:
Add, replace or remove header
comment.

* **logical_not_operators_with_spaces** [contrib]
Logical NOT operators (!)
should have leading and
trailing whitespaces.

* **logical_not_operators_with_successor_space** [contrib]
Logical NOT operators (!)
should have one trailing
whitespace.

* **logical_not_operators_with_spaces** [contrib]
Logical NOT operators (!) should have
leading and trailing whitespaces.

* **long_array_syntax** [contrib]
Arrays should use the long
syntax.
Expand Down Expand Up @@ -564,17 +565,20 @@ Choose from the list of available fixers:
code behavior.

* **php_unit_construct** [contrib]
PHPUnit assertion method calls like
"->assertSame(true, $foo)" should be
written with dedicated method like
"->assertTrue($foo)". Warning! This
could change code behavior.
PHPUnit assertion method calls
like "->assertSame(true,
$foo)" should be written with
dedicated method like
"->assertTrue($foo)". Warning!
This could change code
behavior.

* **php_unit_strict** [contrib]
PHPUnit methods like "assertSame"
should be used instead of
"assertEquals". Warning! This could
change code behavior.
PHPUnit methods like
"assertSame" should be used
instead of "assertEquals".
Warning! This could change
code behavior.

* **phpdoc_order** [contrib]
Annotations in phpdocs should
Expand Down
2 changes: 1 addition & 1 deletion Symfony/CS/Fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*/
class Fixer
{
const VERSION = '1.10-DEV';
const VERSION = '1.10';

protected $fixers = array();
protected $configs = array();
Expand Down

0 comments on commit 8e21b4f

Please sign in to comment.