cosmos-sdk/version/version.go

13 lines
202 B
Go
Raw Normal View History

2017-07-06 02:30:03 -07:00
//nolint
2017-03-01 10:12:25 -08:00
package version
2017-10-11 20:44:40 -07:00
// when updating these,
// remember to also update examples/basecoin/tests/cli/rpc.sh
// ... ugh ....
2017-03-01 10:12:25 -08:00
const Maj = "0"
2017-08-18 15:48:57 -07:00
const Min = "7"
2017-10-11 20:30:50 -07:00
const Fix = "1"
2017-03-01 10:12:25 -08:00
2017-10-11 20:30:50 -07:00
const Version = "0.7.1"