Skip to content

Commit 54b503d

Browse files
committed
docs: diagram size optimization
1 parent e662221 commit 54b503d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ flowchart TD
167167
RequestNextSemanticVersioning --> FindCommits[Find commits\nfrom HEAD^1 to previous stable semantic version like v0.3.0]
168168
FindCommits --> CalculateVersionChange[Calculate main version change\nChoose only ONE path]
169169
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]
172172
MajorChange --> CalculatedMainVersion
173173
MinorChange --> CalculatedMainVersion
174174
PatchChange --> CalculatedMainVersion
@@ -182,7 +182,7 @@ flowchart TD
182182
BetaFlag --> CombineIntoTotalPrereleaseVersion
183183
RcFlag --> CombineIntoTotalPrereleaseVersion
184184
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]
186186
CombineIntoTotalPrereleaseVersion --> OutputFinalSemanticVersion
187187
AddBuildMetaData --> OutputFinalSemanticVersion[Render Final Semantic Version]
188188
```

0 commit comments

Comments
 (0)