diff --git a/CHANGELOG.md b/CHANGELOG.md index aa056c5..393ee52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Not released +## 0.11.0 - Fix false positive in `ReturnTypeDeclarationSniff` with nullable types. - Relax check for missing return type when `{aType}|null` doc bloc is present. - Add `is` to the list of allowed short names. @@ -8,6 +8,8 @@ - Added `VariablesNameSniff`. - Improved `PhpcsHelpers::variableIsProperty()`. - Improved failure handling in FixturesTest. +- Use NeutronStandard by opting-in rules instead of opting-out +- Properly handle Generators and return types. ## 0.10.0 - Renamed sniffs namespace (**breaking change**). diff --git a/README.md b/README.md index ac83ba8..8b5b31d 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ It means they can be installed by adding the entry to composer.json `require-dev ```json { "require-dev": { - "inpsyde/php-coding-standards": "~0.10.0" + "inpsyde/php-coding-standards": "~0.11.0" } } ``` diff --git a/composer.json b/composer.json index 3f751c1..469e388 100644 --- a/composer.json +++ b/composer.json @@ -43,7 +43,7 @@ }, "extra": { "branch-alias": { - "dev-master": "0.10.x-dev" + "dev-master": "0.11.x-dev" } } }