Skip to content

Commit

Permalink
version: add and bump abci version
Browse files Browse the repository at this point in the history
  • Loading branch information
ebuchman committed Sep 6, 2018
1 parent 6fd79d1 commit 54fe6ef
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
10 changes: 5 additions & 5 deletions abci/version/version.go
Original file line number Diff line number Diff line change
@@ -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 changes: 3 additions & 0 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 54fe6ef

Please sign in to comment.