Codebase list golang-github-vbatts-go-mtree / 646a2674-a44a-4496-a88c-2c4f2e843724/main version.go
646a2674-a44a-4496-a88c-2c4f2e843724/main

Tree @646a2674-a44a-4496-a88c-2c4f2e843724/main (Download .tar.gz)

version.go @646a2674-a44a-4496-a88c-2c4f2e843724/mainraw · history · blame

package mtree

import "fmt"

const (
	// AppName is the name ... of this library/application
	AppName = "gomtree"
)

const (
	// VersionMajor is for an API incompatible changes
	VersionMajor = 0
	// VersionMinor is for functionality in a backwards-compatible manner
	VersionMinor = 5
	// VersionPatch is for backwards-compatible bug fixes
	VersionPatch = 1

	// VersionDev indicates development branch. Releases will be empty string.
	VersionDev = "-dev"
)

// Version is the specification version that the package types support.
var Version = fmt.Sprintf("%d.%d.%d%s", VersionMajor, VersionMinor, VersionPatch, VersionDev)