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
A git commit tagged with, for example, v4, v4.5, and v4.5.14 results in get-next-version complaining that the commit is tagged with multiple semver versions. This tagging format is common in some workflows to always point to the most recent v4 release or v4.5 minor release sequence in addition to the specific release commit.
What should have happened instead?
get-next-version should use only the actual semver formatted tag (the one with all version elements) to calculate the next version.
What steps are needed to reproduce the bug?
Tag a commit with tags in the format v<major>, v<major>.<minor> and v<major>.<minor>.<patch>
run get-next-commit and see the error.
The text was updated successfully, but these errors were encountered:
What happened incorrectly?
A git commit tagged with, for example,
v4
,v4.5
, andv4.5.14
results inget-next-version
complaining that the commit is tagged with multiple semver versions. This tagging format is common in some workflows to always point to the most recentv4
release orv4.5
minor release sequence in addition to the specific release commit.What should have happened instead?
get-next-version
should use only the actual semver formatted tag (the one with all version elements) to calculate the next version.What steps are needed to reproduce the bug?
v<major>
,v<major>.<minor>
andv<major>.<minor>.<patch>
get-next-commit
and see the error.The text was updated successfully, but these errors were encountered: