diff --git a/CHANGELOG.md b/CHANGELOG.md index c46d809bb..5f21ff05a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog + +## 0.5.9 + +IMPROVEMENTS +* [rpc] Updated tendermint to make process of websocket request async. + +BUG FIXES + +* [\#584](https://github.com/binance-chain/node/pull/584) [MatchEngine] Fix minor issues in allocation + ## 0.5.5 IMPROVEMENTS diff --git a/Gopkg.lock b/Gopkg.lock index d22630b69..26f40f9e3 100644 --- a/Gopkg.lock +++ b/Gopkg.lock @@ -601,7 +601,7 @@ version = "v0.12.0-binance.0" [[projects]] - digest = "1:271f30cf87f970498f8619cc70fbb6e86b56a89f287b6252ee705fabc78dffa0" + digest = "1:31fd9256d36ed8b0f53286583638e89f5b5e39eab53ced37cd6c71a733a1f5b0" name = "github.com/tendermint/tendermint" packages = [ "abci/client", @@ -636,6 +636,7 @@ "libs/events", "libs/fail", "libs/flowrate", + "libs/gopool", "libs/log", "libs/pubsub", "libs/pubsub/query", @@ -670,9 +671,9 @@ "version", ] pruneopts = "UT" - revision = "332351ca5acf6d7892e990c85a947b9071814bb6" + revision = "ee4d6f731a22cce0088c1366f6cf5df2ec9e45bf" source = "github.com/binance-chain/bnc-tendermint" - version = "v0.30.1-binance.6" + version = "v0.30.1-binance.7" [[projects]] digest = "1:7886f86064faff6f8d08a3eb0e8c773648ff5a2e27730831e2bfbf07467f6666" diff --git a/Gopkg.toml b/Gopkg.toml index e991e43a3..1ef51e354 100644 --- a/Gopkg.toml +++ b/Gopkg.toml @@ -37,7 +37,7 @@ [[override]] name = "github.com/tendermint/tendermint" source = "github.com/binance-chain/bnc-tendermint" - version = "=v0.30.1-binance.6" + version = "=v0.30.1-binance.7" [[constraint]] name = "github.com/cosmos/cosmos-sdk" diff --git a/version/version.go b/version/version.go index 17bda746d..11526a4d4 100644 --- a/version/version.go +++ b/version/version.go @@ -12,7 +12,7 @@ var ( Version string ) -const NodeVersion = "0.5.8" +const NodeVersion = "0.5.9" func init() { Version = fmt.Sprintf("Binance Chain Release: %s;", NodeVersion)