diff options
Diffstat (limited to 'common.go')
| -rw-r--r-- | common.go | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -158,7 +158,13 @@ func (rs *RepoStatus) GetCurrentVersion() string { } func (rs *RepoStatus) IncrementVersion() bool { - return rs.setTag() + rs.incrementRevision() + rs.EnableSelectTag() + rs.setTag() + newtag := "v" + rs.newversion.String() + log.Log(REPOWARN, "new version is set to", newtag, "set target version to this") + rs.targetReleaseVersion.SetText(newtag) + return true } // TODO: run this through the sanity check! |
