Bump version to 0.7.0-alpha

This commit is contained in:
Ethan Frey 2017-08-18 23:48:57 +01:00
parent 7533cd9d7e
commit 8a430648e4
2 changed files with 4 additions and 4 deletions

View File

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

View File

@ -2,7 +2,7 @@
package version package version
const Maj = "0" const Maj = "0"
const Min = "6" const Min = "7"
const Fix = "2" const Fix = "0"
const Version = "0.6.2" const Version = "0.7.0-alpha"