mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-09 06:33:16 +00:00
ci: add goreleaser (#5527)
Co-authored-by: Erik Grinaker <erik@interchain.berlin> Co-authored-by: Alessio Treglia <alessio@tendermint.com>
This commit is contained in:
@@ -1,27 +1,12 @@
|
||||
package version
|
||||
|
||||
var (
|
||||
// GitCommit is the current HEAD set using ldflags.
|
||||
GitCommit string
|
||||
|
||||
// Version is the built softwares version.
|
||||
Version = TMCoreSemVer
|
||||
)
|
||||
|
||||
func init() {
|
||||
if GitCommit != "" {
|
||||
Version += "-" + GitCommit
|
||||
}
|
||||
}
|
||||
|
||||
const (
|
||||
// TMCoreSemVer is the current version of Tendermint Core.
|
||||
// It's the Semantic Version of the software.
|
||||
// Must be a string because scripts like dist.sh read this file.
|
||||
// XXX: Don't change the name of this variable or you will break
|
||||
// automation :)
|
||||
TMCoreSemVer = "0.34.0"
|
||||
TMCoreSemVer string
|
||||
)
|
||||
|
||||
const (
|
||||
// ABCISemVer is the semantic version of the ABCI library
|
||||
ABCISemVer = "0.17.0"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user