Update chapter-06-gbapp-reference.md
This commit is contained in:
parent
6945606dad
commit
156c42475e
1 changed files with 29 additions and 0 deletions
|
@ -224,12 +224,41 @@ This in some way contributes to a better understanding of how it works.
|
||||||
|
|
||||||
## Commit code
|
## Commit code
|
||||||
|
|
||||||
|
See https://semver.org/.
|
||||||
|
|
||||||
Numbering:
|
Numbering:
|
||||||
|
|
||||||
1.0.0
|
1.0.0
|
||||||
MAJOR.MINOR.PATCH
|
MAJOR.MINOR.PATCH
|
||||||
(BREAK.FEATURE.BUG)
|
(BREAK.FEATURE.BUG)
|
||||||
|
|
||||||
|
Messsages:
|
||||||
|
|
||||||
|
- A fix in the code:
|
||||||
|
|
||||||
|
```
|
||||||
|
fix(azuredeployer.gbapp): stop graphite breaking when too much pressure applied Patch Fix Release
|
||||||
|
```
|
||||||
|
|
||||||
|
- A new feature
|
||||||
|
|
||||||
|
```
|
||||||
|
feat(core.gbapp): add 'graphiteWidth' option
|
||||||
|
```
|
||||||
|
|
||||||
|
- A commit without incrementing version number:
|
||||||
|
|
||||||
|
```
|
||||||
|
BREAKING CHANGE: The graphiteWidth option has been removed.
|
||||||
|
```
|
||||||
|
|
||||||
|
or
|
||||||
|
|
||||||
|
```
|
||||||
|
perf(core.gbapp): Improved loop.
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
Rules:
|
Rules:
|
||||||
|
|
||||||
BREAK: If the body contains the text “BREAKING CHANGE” then MAJOR version is incremented.
|
BREAK: If the body contains the text “BREAKING CHANGE” then MAJOR version is incremented.
|
||||||
|
|
Loading…
Add table
Reference in a new issue