Skip to content
Snippets Groups Projects
Select Git revision
  • 1671b148d2f97abbb64cdced1c45aca3485663a0
  • main default
2 results

mapping_pilot7_service1_ef_input_json.ttl

Blame
  • version.go 436 B
    package version
    
    import (
    	"fmt"
    	"strings"
    )
    
    var (
    	Version = "0.16.2-gitlab.13"
    
    	// GitCommit will be overwritten automatically by the build system
    	GitCommit = "HEAD"
    )
    
    // FullVersion formats the version to be printed
    func FullVersion() string {
    	return fmt.Sprintf("%s, build %s", Version, GitCommit)
    }
    
    // RC checks if the Machine version is a release candidate or not
    func RC() bool {
    	return strings.Contains(Version, "rc")
    }