From 156c42475e30cf2cb6965c11867ddc359496ee4d Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Mon, 2 Jan 2023 09:32:02 -0300 Subject: [PATCH] Update chapter-06-gbapp-reference.md --- book/chapter-06-gbapp-reference.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/book/chapter-06-gbapp-reference.md b/book/chapter-06-gbapp-reference.md index cefcbe06..7c7e0348 100644 --- a/book/chapter-06-gbapp-reference.md +++ b/book/chapter-06-gbapp-reference.md @@ -224,12 +224,41 @@ This in some way contributes to a better understanding of how it works. ## Commit code + See https://semver.org/. + Numbering: 1.0.0 MAJOR.MINOR.PATCH (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: BREAK: If the body contains the text “BREAKING CHANGE” then MAJOR version is incremented.