deps, changelog, version

This commit is contained in:
Ethan Buchman 2018-04-09 16:51:40 +03:00
parent 9b246ec78c
commit 9722f41600
4 changed files with 33 additions and 14 deletions

View File

@ -1,5 +1,24 @@
# Changelog # Changelog
## 0.14.0 (TBD)
BREAKING CHANGES:
* [client/builder] Renamed to `client/core` and refactored to use a CoreContext
struct
* [server] Refactor to improve useability and de-duplicate code
* [types] `Result.ToQuery -> Error.QueryResult`
* [makefile] `make build` and `make install` only build/install `gaiacli` and
`gaiad`. Use `make build_examples` and `make install_examples` for
`basecoind/basecli` and `democoind/democli`
* [staking] Various fixes/improvements
BUG FIXES
* [client] Reuse Tendermint RPC client to avoid excessive open files
* [client] Fix setting log level
* [basecoin] Sort coins in genesis
## 0.13.1 (April 3, 2018) ## 0.13.1 (April 3, 2018)
BUG FIXES BUG FIXES

20
Gopkg.lock generated
View File

@ -183,7 +183,7 @@
branch = "master" branch = "master"
name = "github.com/rcrowley/go-metrics" name = "github.com/rcrowley/go-metrics"
packages = ["."] packages = ["."]
revision = "8732c616f52954686704c8645fe1a9d59e9df7c1" revision = "d932a24a8ccb8fcadc993e5c6c58f93dac168294"
[[projects]] [[projects]]
name = "github.com/spf13/afero" name = "github.com/spf13/afero"
@ -261,8 +261,8 @@
"server", "server",
"types" "types"
] ]
revision = "46686763ba8ea595ede16530ed4a40fb38f49f94" revision = "78a8905690ef54f9d57e3b2b0ee7ad3a04ef3f1f"
version = "v0.10.2" version = "v0.10.3"
[[projects]] [[projects]]
branch = "master" branch = "master"
@ -341,8 +341,8 @@
"version", "version",
"wire" "wire"
] ]
revision = "a1dd329d72e78d4770e602359bad5b7b1e8b72a3" revision = "4930b61a381b9fb9bc530eb5deb56ea6429a1c3a"
version = "v0.18.0-rc1" version = "v0.18.0"
[[projects]] [[projects]]
name = "github.com/tendermint/tmlibs" name = "github.com/tendermint/tmlibs"
@ -360,7 +360,7 @@
"pubsub/query" "pubsub/query"
] ]
revision = "2e24b64fc121dcdf1cabceab8dc2f7257675483c" revision = "2e24b64fc121dcdf1cabceab8dc2f7257675483c"
version = "0.8.1" version = "v0.8.1"
[[projects]] [[projects]]
branch = "master" branch = "master"
@ -390,13 +390,13 @@
"lex/httplex", "lex/httplex",
"trace" "trace"
] ]
revision = "b3c676e531a6dc479fa1b35ac961c13f5e2b4d2e" revision = "61147c48b25b599e5b561d2e9c4f3e1ef489ca41"
[[projects]] [[projects]]
branch = "master" branch = "master"
name = "golang.org/x/sys" name = "golang.org/x/sys"
packages = ["unix"] packages = ["unix"]
revision = "1d206c9fa8975fb4cf00df1dc8bf3283dc24ba0e" revision = "3b87a42e500a6dc65dae1a55d0b641295971163e"
[[projects]] [[projects]]
name = "golang.org/x/text" name = "golang.org/x/text"
@ -423,7 +423,7 @@
branch = "master" branch = "master"
name = "google.golang.org/genproto" name = "google.golang.org/genproto"
packages = ["googleapis/rpc/status"] packages = ["googleapis/rpc/status"]
revision = "35de2414665fc36f56b72d982c5af480d86de5ab" revision = "ce84044298496ef4b54b4a0a0909ba593cc60e30"
[[projects]] [[projects]]
name = "google.golang.org/grpc" name = "google.golang.org/grpc"
@ -458,6 +458,6 @@
[solve-meta] [solve-meta]
analyzer-name = "dep" analyzer-name = "dep"
analyzer-version = 1 analyzer-version = 1
inputs-digest = "67298e1f8058b85f082dbd32123f2779b11bda282616e595141dba41a8675c39" inputs-digest = "669e58d0c4eb48e506f1abc66119c2f21b6600d4e08e8875ac83567b5c721565"
solver-name = "gps-cdcl" solver-name = "gps-cdcl"
solver-version = 1 solver-version = 1

View File

@ -70,7 +70,7 @@
name = "github.com/tendermint/iavl" name = "github.com/tendermint/iavl"
[[constraint]] [[constraint]]
version = "~0.18.0-rc1" version = "~0.18.0"
name = "github.com/tendermint/tendermint" name = "github.com/tendermint/tendermint"
[[override]] [[override]]

View File

@ -6,10 +6,10 @@ package version
// TODO improve // TODO improve
const Maj = "0" const Maj = "0"
const Min = "13" const Min = "14"
const Fix = "2" const Fix = "0"
const Version = "0.13.2-dev" const Version = "0.14.0-dev"
// GitCommit set by build flags // GitCommit set by build flags
var GitCommit = "" var GitCommit = ""