chore_: change patch version to 0 when incrementing minor (#5719)

This commit is contained in:
Igor Sirotin 2024-08-15 18:36:52 +01:00 committed by GitHub
parent a00bf6977b
commit 93bb77f303
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

1
_assets/scripts/tag_version.sh Normal file → Executable file
View File

@ -18,6 +18,7 @@ bump_version() {
# Bump the version based on the type of change
if [[ "$is_breaking_change" = true ]]; then
((minor++))
((patch=0))
else
((patch++))
fi