bump rpc version; add consensus version

This commit is contained in:
Ethan Buchman
2016-04-19 20:45:33 -04:00
parent ae07c0171d
commit ae295bd9b6
3 changed files with 15 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
package consensus
import (
. "github.com/tendermint/go-common"
)
// kind of arbitrary
var Spec = "1" // async
var Major = "0" //
var Minor = "2" // replay refactor
var Revision = "1" // round state fix
var Version = Fmt("v%s/%s.%s.%s", Spec, Major, Minor, Revision)