13 lines
202 B
Go
13 lines
202 B
Go
//nolint
|
|
package version
|
|
|
|
// when updating these,
|
|
// remember to also update examples/basecoin/tests/cli/rpc.sh
|
|
// TODO improve
|
|
|
|
const Maj = "0"
|
|
const Min = "7"
|
|
const Fix = "1"
|
|
|
|
const Version = "0.7.1"
|