Skip to content

Commit 6e53362

Browse files
committed
Update LevelMapping to reflect that V059 (Trait private method parameter added) is a MAJOR change, not a PATCH.
1 parent 26109ab commit 6e53362

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
This project follows [Semantic Versioning 2.0.0](http://semver.org/).
44

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

78
## <a name="v0.12.1"></a>v0.12.1 (2018-02-08)
89
[Full Changelog](https://github.com/tomzx/php-semver-checker-git/compare/v0.12.0...v0.12.1)

docs/Ruleset.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ V051 | ----- | *REMOVED*
143143
V052 | PATCH | Trait public method implementation changed
144144
V053 | PATCH | Trait protected method implementation changed
145145
V054 | PATCH | Trait private method implementation changed
146-
V059 | PATCH | Trait private method parameter added
146+
V059 | MAJOR | Trait private method parameter added
147147
V064 | PATCH | Trait public method parameter name changed
148148
V065 | PATCH | Trait protected method parameter name changed
149149
V066 | PATCH | Trait private method parameter name changed

src/PHPSemVerChecker/Configuration/LevelMapping.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class LevelMapping
6767
'V056' => Level::MAJOR,
6868
'V057' => Level::MAJOR,
6969
'V058' => Level::MAJOR,
70-
'V059' => Level::PATCH,
70+
'V059' => Level::MAJOR,
7171
'V060' => Level::PATCH,
7272
'V061' => Level::PATCH,
7373
'V062' => Level::PATCH,

0 commit comments

Comments
 (0)