Merge pull request #296 from prometheus/use-runtime-version
Use runtime.Version() instead of injected version
This commit is contained in:
commit
3292c278fe
|
@ -13,7 +13,11 @@
|
||||||
|
|
||||||
package version
|
package version
|
||||||
|
|
||||||
import "github.com/prometheus/client_golang/prometheus"
|
import (
|
||||||
|
"runtime"
|
||||||
|
|
||||||
|
"github.com/prometheus/client_golang/prometheus"
|
||||||
|
)
|
||||||
|
|
||||||
// Build information. Populated at build-time.
|
// Build information. Populated at build-time.
|
||||||
var (
|
var (
|
||||||
|
@ -22,7 +26,7 @@ var (
|
||||||
Branch string
|
Branch string
|
||||||
BuildUser string
|
BuildUser string
|
||||||
BuildDate string
|
BuildDate string
|
||||||
GoVersion string
|
GoVersion = runtime.Version()
|
||||||
)
|
)
|
||||||
|
|
||||||
// Map provides the iterable version information.
|
// Map provides the iterable version information.
|
||||||
|
|
Loading…
Reference in New Issue