kompose/pkg/version/version.go
Charlie Drage fb0539e64c
Some checks failed
Go / Build (push) Failing after 1m20s
Kompose CI / Test with ${{ matrix.go }} and CROSS_COMPILE=${{ matrix.cross_compile }} (true, 1.22) (push) Failing after 3m57s
Kompose CI / Test with ${{ matrix.go }} and CROSS_COMPILE=${{ matrix.cross_compile }} (false, 1.21) (push) Successful in 4m22s
Kompose CI / Test with ${{ matrix.go }} and CROSS_COMPILE=${{ matrix.cross_compile }} (false, 1.22) (push) Successful in 4m32s
Kompose CI / Test with ${{ matrix.go }} and CROSS_COMPILE=${{ matrix.cross_compile }} (true, 1.21) (push) Successful in 6m45s
Kompose CI / Build docs and Coveralls integration (push) Has been skipped
1.37.0 Release (#2040)
2025-08-11 14:55:47 -04:00

11 lines
454 B
Go

package version
var (
// VERSION is version number that will be displayed when running ./kompose version
VERSION = "1.37.0"
// GITCOMMIT is hash of the commit that will be displayed when running ./kompose version
// this will be overwritten when running build like this: go build -ldflags="-X github.com/kubernetes/kompose/pkg/version.GITCOMMIT=$(GITCOMMIT)"
// HEAD is default indicating that this was not set during build
GITCOMMIT = "HEAD"
)