From bcbc0779d2a506304f39fc605a9bb0109817fb05 Mon Sep 17 00:00:00 2001 From: David Vennik Date: Wed, 21 Dec 2022 14:57:29 +0000 Subject: [PATCH] Allowing to specify different branch in first parameter --- cmd/bumper/main.go | 2 -- version.go | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/cmd/bumper/main.go b/cmd/bumper/main.go index 33643b44..d6e4c7c9 100644 --- a/cmd/bumper/main.go +++ b/cmd/bumper/main.go @@ -151,11 +151,9 @@ func main() { break } } - log.I.S(isBranch, branch, branchParam) if isBranch { branch = branchParam } - log.I.S(branch) if isBranch { startArgs++ } diff --git a/version.go b/version.go index 8975b89a..0cc19e4d 100644 --- a/version.go +++ b/version.go @@ -13,9 +13,9 @@ var ( // GitRef is the gitref, as in refs/heads/branchname. GitRef = "refs/heads/main" // ParentGitCommit is the commit hash of the parent HEAD. - ParentGitCommit = "5e6c6fa0365dfb494c0a8e9c99d557cd7eb331df" + ParentGitCommit = "3f4e67a1d40a959fed1d7f714647b6087fb19d11" // BuildTime stores the time when the current binary was built. - BuildTime = "2022-12-21T14:55:59Z" + BuildTime = "2022-12-21T14:57:29Z" // SemVer lists the (latest) git tag on the build. SemVer = "v0.0.209" // PathBase is the path base returned from runtime caller.