From 01ee0a7b04e4f34e4f941d5d46a68394a643649d Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Tue, 27 Dec 2022 11:59:37 -0300 Subject: [PATCH] Update chapter-06-gbapp-reference.md --- book/chapter-06-gbapp-reference.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/book/chapter-06-gbapp-reference.md b/book/chapter-06-gbapp-reference.md index b930768b..3c595bf3 100644 --- a/book/chapter-06-gbapp-reference.md +++ b/book/chapter-06-gbapp-reference.md @@ -229,13 +229,14 @@ This in some way contributes to a better understanding of how it works. 1.0.0 MAJOR.MINOR.PATCH - BREAK.FEATURE.BUG + (BREAK.FEATURE.BUG) Rules: - If the body contains the text “BREAKING CHANGE” then MAJOR version is incremented. - If the type contains feat/feature, then MINOR version is incremented. - If the type contains fix, then PATCH version is incremented. + BREAK: If the body contains the text “BREAKING CHANGE” then MAJOR version is incremented. + FEATURE: If the type contains feat/feature, then MINOR version is incremented. + BUG If the type contains fix, then PATCH version is incremented. + And finally, if the type contains refactor/style/perf/doc/test/chore, then nothing is increment and no release is made.