From 54fe6ef73c635cd52c824a1ad96582679b9f9a7e Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Thu, 6 Sep 2018 17:58:12 -0400 Subject: [PATCH] version: add and bump abci version --- abci/version/version.go | 10 +++++----- version/version.go | 3 +++ 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/abci/version/version.go b/abci/version/version.go index 7223a86ad..f4dc4d235 100644 --- a/abci/version/version.go +++ b/abci/version/version.go @@ -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 diff --git a/version/version.go b/version/version.go index 27b325f0f..337ce4ead 100644 --- a/version/version.go +++ b/version/version.go @@ -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