Skip to content

Commit b83957b

Browse files
committed
Add a note about Semantic Versioning 2.0.0 in the README.md.
1 parent 1cdbe42 commit b83957b

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,14 @@
1010

1111
PHP Semantic Versioning Checker is a console/library which allows you to inspect a set of before and after source code.
1212

13-
After the inspection is completed, you are given a list of changes that have occurred between the two changesets. For each of these changes, the level of the change (MAJOR, MINOR, PATCH) will be given, as well as the location of the change (file and line number) and a reason as to why this level change is suggested.
13+
After the inspection is completed, you are given a list of changes that have occurred between the two changesets following [Semantic Versioning 2.0.0](https://semver.org/). For each of these changes, the level of the change (MAJOR, MINOR, PATCH) will be given, as well as the location of the change (file and line number) and a reason as to why this level change is suggested.
14+
15+
## Semantic Versioning 2.0.0 Overview
16+
Given a version number MAJOR.MINOR.PATCH, increment the:
17+
18+
* MAJOR version when you make incompatible API changes,
19+
* MINOR version when you add functionality in a backwards-compatible manner, and
20+
* PATCH version when you make backwards-compatible bug fixes.
1421

1522
## Getting started
1623

0 commit comments

Comments
 (0)