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
Describe the bug
I started with a Go module at major version 2, and committed at feat! that included incrementing the module version to v3. Running gotagger, it reported the version as v4.0.0.
To Reproduce
Steps to reproduce the behavior:
git initgo mod init example.com/foo/v2
# create basic main.gogit add .git commit -m 'chore: initial commit'git tag -m "Release test" v2.0.0
# change module name to v3git commit -a -m 'feat!: bump major version to v3'
Running gotagger now will report v4.0.0 as the version:
Describe the bug
I started with a Go module at major version 2, and committed at
feat!
that included incrementing the module version tov3
. Runninggotagger
, it reported the version asv4.0.0
.To Reproduce
Steps to reproduce the behavior:
Running gotagger now will report v4.0.0 as the version:
Expected behavior
Version to be
v3.0.0
.Desktop (please complete the following information):
Additional context
This does not occur with gotagger v0.9.0.
The text was updated successfully, but these errors were encountered: