Skip to content

Commit

Permalink
Update LevelMapping to reflect that V059 (Trait private method parame…
Browse files Browse the repository at this point in the history
…ter added) is a MAJOR change, not a PATCH.
  • Loading branch information
tomzx committed Apr 19, 2018
1 parent 26109ab commit 6e53362
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
This project follows [Semantic Versioning 2.0.0](http://semver.org/).

## <a name="unreleased"></a>Unreleased
* Revert V059 level from PATCH to MAJOR

## <a name="v0.12.1"></a>v0.12.1 (2018-02-08)
[Full Changelog](https://github.com/tomzx/php-semver-checker-git/compare/v0.12.0...v0.12.1)
Expand Down
2 changes: 1 addition & 1 deletion docs/Ruleset.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ V051 | ----- | *REMOVED*
V052 | PATCH | Trait public method implementation changed
V053 | PATCH | Trait protected method implementation changed
V054 | PATCH | Trait private method implementation changed
V059 | PATCH | Trait private method parameter added
V059 | MAJOR | Trait private method parameter added
V064 | PATCH | Trait public method parameter name changed
V065 | PATCH | Trait protected method parameter name changed
V066 | PATCH | Trait private method parameter name changed
Expand Down
2 changes: 1 addition & 1 deletion src/PHPSemVerChecker/Configuration/LevelMapping.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class LevelMapping
'V056' => Level::MAJOR,
'V057' => Level::MAJOR,
'V058' => Level::MAJOR,
'V059' => Level::PATCH,
'V059' => Level::MAJOR,
'V060' => Level::PATCH,
'V061' => Level::PATCH,
'V062' => Level::PATCH,
Expand Down

0 comments on commit 6e53362

Please sign in to comment.