Skip to content

Commit

Permalink
Use go 1.18 BuildInfo for version when installed using go install (#508)
Browse files Browse the repository at this point in the history
  • Loading branch information
kke committed Jun 26, 2023
1 parent 681cc85 commit 04a76d8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ require (

require (
github.com/alessio/shellescape v1.4.1
github.com/carlmjohnson/versioninfo v0.22.4
github.com/go-ozzo/ozzo-validation/v4 v4.3.0
github.com/go-playground/validator/v10 v10.14.1
github.com/k0sproject/version v0.3.0
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ github.com/bmatcuk/doublestar/v4 v4.6.0 h1:HTuxyug8GyFbRkrffIpzNCSK4luc0TY3wzXvz
github.com/bmatcuk/doublestar/v4 v4.6.0/go.mod h1:xBQ8jztBU6kakFMg+8WGxn0c6z1fTSPVIjEY1Wr7jzc=
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 h1:DDGfHa7BWjL4YnC6+E63dPcxHo2sUxDIu8g3QgEJdRY=
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869/go.mod h1:Ekp36dRnpXw/yCqJaO+ZrUyxD+3VXMFFr56k5XYrpB4=
github.com/carlmjohnson/versioninfo v0.22.4 h1:AucUHDSKmk6j7Yx3dECGUxaowGHOAN0Zx5/EBtsXn4Y=
github.com/carlmjohnson/versioninfo v0.22.4/go.mod h1:QT9mph3wcVfISUKd0i9sZfVrPviHuSF+cUtLjm2WSf8=
github.com/cpuguy83/go-md2man/v2 v2.0.2 h1:p1EgwI/C7NhT0JmVkwCD2ZBK8j4aeHQX2pMHHBfMQ6w=
github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
github.com/creack/pty v1.1.17 h1:QeVUsEDNrLBW4tMgZHvxy18sKtr6VI492kBhUfhDJNI=
Expand Down
10 changes: 7 additions & 3 deletions version/version.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
package version

import "strings"
import (
"strings"

"github.com/carlmjohnson/versioninfo"
)

var (
// Version of the product, is set during the build
Version = "0.0.0"
Version = versioninfo.Version
// GitCommit is set during the build
GitCommit = "HEAD"
GitCommit = versioninfo.Revision
// Environment of the product, is set during the build
Environment = "development"
)
Expand Down

0 comments on commit 04a76d8

Please sign in to comment.