Browse Source

version: add and bump abci version

pull/2343/head
Ethan Buchman 6 years ago
parent
commit
54fe6ef73c
2 changed files with 8 additions and 5 deletions
  1. +5
    -5
      abci/version/version.go
  2. +3
    -0
      version/version.go

+ 5
- 5
abci/version/version.go View File

@ -1,9 +1,9 @@
package version
// NOTE: we should probably be versioning the ABCI and the abci-cli separately
import (
"github.com/tendermint/tendermint/version"
)
const Maj = "0"
const Min = "12"
const Fix = "0"
// TODO: eliminate this after some version refactor
const Version = "0.12.0"
const Version = version.ABCIVersion

+ 3
- 0
version/version.go View File

@ -16,6 +16,9 @@ var (
GitCommit string
)
// ABCIVersion is the version of the ABCI library
const ABCIVersion = "0.14.0"
func init() {
if GitCommit != "" {
Version += "-" + GitCommit


Loading…
Cancel
Save