You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -167,8 +167,8 @@ flowchart TD
167
167
RequestNextSemanticVersioning --> FindCommits[Find commits\nfrom HEAD^1 to previous stable semantic version like v0.3.0]
168
168
FindCommits --> CalculateVersionChange[Calculate main version change\nChoose only ONE path]
169
169
CalculateVersionChange --> MajorChange[if git conventional commits\nwith breaking changes\nlike feat! are present\nand it is not 0.*.* development mode\nor flag `--publish` is present,\nthen add MAJOR version\nand reset MINOR and PATCH to 0\nchange: +1.0.0]
170
-
CalculateVersionChange -->MinorChange[If commits with `feat` type are present\nincrease MINOR version and reset PATCH version to zero\n change: *.+1.0,]
171
-
CalculateVersionChange -->PatchChange[if only commits with `fix`\n are present\nthen change only PATCH\nchange: *.*.+1]
170
+
CalculateVersionChange -->MinorChange[If commits with `feat` type are present\nincrease MINOR version\nand reset PATCH version\nto zero change: *.+1.0,]
171
+
CalculateVersionChange -->PatchChange[if only commits with `fix`\n are present\nthen change only PATCH\nchange: *.*.+1]
172
172
MajorChange --> CalculatedMainVersion
173
173
MinorChange --> CalculatedMainVersion
174
174
PatchChange --> CalculatedMainVersion
@@ -182,7 +182,7 @@ flowchart TD
182
182
BetaFlag --> CombineIntoTotalPrereleaseVersion
183
183
RcFlag --> CombineIntoTotalPrereleaseVersion
184
184
CombineIntoTotalPrereleaseVersion[Combine into latest prerelease version]
185
-
CalculatedMainVersion --> AddBuildMetaData[Add build meta data as +$BuildMetaData\nto the end of version]
185
+
CalculatedMainVersion ----> AddBuildMetaData[Add build meta data\nas +$BuildMetaData\nto the end of version]
0 commit comments