mirror of
https://github.com/ChristianSch/gitea-release-drafter.git
synced 2025-06-16 09:15:36 +00:00
Fix minor version incrementation
This commit is contained in:
parent
efdf01c071
commit
d7c5ec16cb
@ -45,7 +45,7 @@ func ResolveVersion(cfg *config.RepoConfig, last *gitea.Release, changelog *Chan
|
|||||||
if incMajor {
|
if incMajor {
|
||||||
nextVersion = lastVersion.IncMajor()
|
nextVersion = lastVersion.IncMajor()
|
||||||
} else if incMinor {
|
} else if incMinor {
|
||||||
nextVersion = lastVersion.IncMajor()
|
nextVersion = lastVersion.IncMinor()
|
||||||
} else if incPatch {
|
} else if incPatch {
|
||||||
nextVersion = lastVersion.IncPatch()
|
nextVersion = lastVersion.IncPatch()
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user