mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-26 07:12:16 +00:00
version bump and release branch
This commit is contained in:
parent
6643e4969f
commit
6fef314423
@ -8,6 +8,6 @@ import (
|
|||||||
var Spec = "1" // async
|
var Spec = "1" // async
|
||||||
var Major = "0" //
|
var Major = "0" //
|
||||||
var Minor = "2" // replay refactor
|
var Minor = "2" // replay refactor
|
||||||
var Revision = "1" // round state fix
|
var Revision = "2" // validation -> commit
|
||||||
|
|
||||||
var Version = Fmt("v%s/%s.%s.%s", Spec, Major, Minor, Revision)
|
var Version = Fmt("v%s/%s.%s.%s", Spec, Major, Minor, Revision)
|
||||||
|
@ -12,7 +12,7 @@ make test_race
|
|||||||
# run the app tests
|
# run the app tests
|
||||||
bash test/app/test.sh
|
bash test/app/test.sh
|
||||||
|
|
||||||
if [[ "$BRANCH" == "master" || "$BRANCH" == "staging" ]]; then
|
if [[ "$BRANCH" == "master" || $(echo "$BRANCH" | grep "release-") != "" ]]; then
|
||||||
echo ""
|
echo ""
|
||||||
echo "* branch $BRANCH; testing libs"
|
echo "* branch $BRANCH; testing libs"
|
||||||
# checkout every github.com/tendermint dir and run its tests
|
# checkout every github.com/tendermint dir and run its tests
|
||||||
|
@ -23,7 +23,7 @@ echo "* running basic peer tests"
|
|||||||
bash test/p2p/test.sh tester
|
bash test/p2p/test.sh tester
|
||||||
|
|
||||||
BRANCH=`git rev-parse --abbrev-ref HEAD`
|
BRANCH=`git rev-parse --abbrev-ref HEAD`
|
||||||
if [[ "$BRANCH" == "master" || "$BRANCH" == "staging" ]]; then
|
if [[ "$BRANCH" == "master" || $(echo "$BRANCH" | grep "release-") != "" ]]; then
|
||||||
echo ""
|
echo ""
|
||||||
echo "* branch $BRANCH; running mintnet/netmon throughput benchmark"
|
echo "* branch $BRANCH; running mintnet/netmon throughput benchmark"
|
||||||
bash tests/net/test.sh
|
bash tests/net/test.sh
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package version
|
package version
|
||||||
|
|
||||||
const Maj = "0"
|
const Maj = "0"
|
||||||
const Min = "6" // tmsp refactor
|
const Min = "7" // tmsp useability (protobuf, unix); optimizations; broadcast_tx_commit
|
||||||
const Fix = "0"
|
const Fix = "0"
|
||||||
|
|
||||||
const Version = Maj + "." + Min + "." + Fix
|
const Version = Maj + "." + Min + "." + Fix
|
||||||
|
Loading…
x
Reference in New Issue
Block a user