Skip to content

Commit

Permalink
deps, changelog, version
Browse files Browse the repository at this point in the history
  • Loading branch information
ebuchman committed Apr 9, 2018
1 parent 9b246ec commit 9722f41
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 14 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# 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)

BUG FIXES
Expand Down
20 changes: 10 additions & 10 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
name = "github.com/tendermint/iavl"

[[constraint]]
version = "~0.18.0-rc1"
version = "~0.18.0"
name = "github.com/tendermint/tendermint"

[[override]]
Expand Down
6 changes: 3 additions & 3 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ package version
// TODO improve

const Maj = "0"
const Min = "13"
const Fix = "2"
const Min = "14"
const Fix = "0"

const Version = "0.13.2-dev"
const Version = "0.14.0-dev"

// GitCommit set by build flags
var GitCommit = ""

0 comments on commit 9722f41

Please sign in to comment.