...

Source file src/github.com/redhat-developer/odo/pkg/version/version.go

Documentation: github.com/redhat-developer/odo/pkg/version

     1  package version
     2  
     3  /*
     4  ===================
     5  =    IMPORTANT    =
     6  ===================
     7  
     8  This package is solely for versioning information when releasing odo..
     9  
    10  Changing these values will change the versioning information when releasing odo.
    11  */
    12  
    13  var (
    14  	// VERSION  is version number that will be displayed when running ./odo version
    15  	VERSION = "v3.16.1"
    16  
    17  	// GITCOMMIT is hash of the commit that will be displayed when running ./odo version
    18  	// this will be overwritten when running  build like this: go build -ldflags="-X github.com/redhat-developer/odo/cmd.GITCOMMIT=$(GITCOMMIT)"
    19  	// HEAD is default indicating that this was not set during build
    20  	GITCOMMIT = "HEAD"
    21  )
    22  

View as plain text