This commit is contained in:
Ethan Buchman 2017-10-11 23:44:40 -04:00
parent a4203368d4
commit 098d17711a
2 changed files with 5 additions and 1 deletions

View File

@ -66,7 +66,7 @@ test01GetInsecure() {
INFO=$(${CLIENT_EXE} rpc info)
assertTrue "line=${LINENO}, get info" "$?"
DATA=$(echo $INFO | jq .response.data)
assertEquals "line=${LINENO}, basecoin info" '"Basecoin v0.7.0"' "$DATA"
assertEquals "line=${LINENO}, basecoin info" '"Basecoin v0.7.1"' "$DATA"
}
test02GetSecure() {

View File

@ -1,6 +1,10 @@
//nolint
package version
// when updating these,
// remember to also update examples/basecoin/tests/cli/rpc.sh
// ... ugh ....
const Maj = "0"
const Min = "7"
const Fix = "1"