version

package
v0.2.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 7, 2023 License: MIT Imports: 10 Imported by: 0

Documentation

Index

Constants

View Source
const EnvSpecifiedVersion = "SPECIFIED_VERSION"

Variables

This section is empty.

Functions

func JSON

func JSON() string

func ReleaseVersion

func ReleaseVersion() string

func ShortString

func ShortString() string

func String

func String() string

func VersionObject

func VersionObject() any

func YAML

func YAML() string

Types

type BuildInfo

type BuildInfo struct {
	GoVersion string `json:"goVersion,omitempty" yaml:"goVersion,omitempty"`
	GOOS      string `json:"GOOS,omitempty" yaml:"GOOS,omitempty"`
	GOARCH    string `json:"GOARCH,omitempty" yaml:"GOARCH,omitempty"`
	NumCPU    int    `json:"numCPU,omitempty" yaml:"numCPU,omitempty"`
	Compiler  string `json:"compiler,omitempty" yaml:"compiler,omitempty"`
	BuildTime string `json:"buildTime,omitempty" yaml:"buildTime,omitempty"` // Such as "2021-10-20 18:24:03"
}

type GitInfo

type GitInfo struct {
	LatestTag string `json:"latestTag,omitempty" yaml:"latestTag,omitempty"` // Such as "v1.2.3"
	Commit    string `json:"commit,omitempty" yaml:"commit,omitempty"`       // Such as "3836f8770ab8f488356b2129f42f2ae5c1134bb0"
	TreeState string `json:"treeState,omitempty" yaml:"treeState,omitempty"` // Such as "clean", "dirty"
}

GitInfo contains git information. following attributes:

LatestTag - "vX.Y.Z" used to indicate the last git tag.
Commit - The git commit id corresponding to this source code.
TreeState - "clean" indicates no changes since the git commit id
    "dirty" indicates source code changes after the git commit id

type Info

type Info struct {
	ReleaseVersion string     `json:"releaseVersion" yaml:"releaseVersion"` // Such as "v1.2.3-3836f877"
	GitInfo        *GitInfo   `json:"gitInfo,omitempty" yaml:"gitInfo,omitempty"`
	BuildInfo      *BuildInfo `json:"buildInfo,omitempty" yaml:"buildInfo,omitempty"`
}

Info contains versioning information. following attributes:

   ReleaseVersion - "vX.Y.Z-00000000" used to indicate the last release version,
		  containing GitVersion and GitCommitShort.

func NewDefaultVersionInfo

func NewDefaultVersionInfo() *Info

func NewInfo

func NewInfo() (*Info, error)

func NewMainOrDefaultVersionInfo

func NewMainOrDefaultVersionInfo() *Info

func VersionInfo

func VersionInfo() *Info

func (*Info) JSON

func (v *Info) JSON() string

func (*Info) ShortString

func (v *Info) ShortString() string

func (*Info) String

func (v *Info) String() string

func (*Info) YAML

func (v *Info) YAML() string

Directories

Path Synopsis
scripts
gen

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL