github.com/aminjam/goflat@v0.4.1-0.20160331105230-ec639fc0d5b3/version.go (about)

     1  package goflat
     2  
     3  // The git commit that was compiled. This will be filled in by the compiler.
     4  var (
     5  	GitCommit   string
     6  	GitDescribe string
     7  )
     8  
     9  //Defining Consts
    10  const (
    11  	// The main version number that is being run at the moment.
    12  	Version = "v0.5.0"
    13  	// A pre-release marker for the version. If this is "" (empty string)
    14  	// then it means that it is a final release. Otherwise, this is a pre-release
    15  	// such as "dev" (in development), "beta", "rc1", etc.
    16  	VersionPrerelease = "dev"
    17  )