Browse Source

changelog

pull/1599/head
Ethan Buchman 6 years ago
parent
commit
6701dba876
2 changed files with 27 additions and 2 deletions
  1. +22
    -1
      CHANGELOG.md
  2. +5
    -1
      README.md

+ 22
- 1
CHANGELOG.md View File

@ -1,6 +1,27 @@
# Changelog
## 0.19.5 (TBD)
## 0.19.5
May 20th, 2018
BREAKING CHANGES
- [rpc/client] TxSearch and UnconfirmedTxs have new arguments (see below)
- [version] Breaking changes to Go APIs will not be reflected in breaking
version change, but will be included in changelog.
FEATURES
- [rpc] `/tx_search` takes `page` and `per_page` args to paginate results
- [rpc] `/unconfirmed_txs` takes `limit` arg to limit the output
IMPROVEMENTS
- [docs] Lots of updates
BUG FIXES
- [mempool] Enforce upper bound on number of transactions
## 0.19.4 (May 17th, 2018)


+ 5
- 1
README.md View File

@ -93,7 +93,11 @@ According to SemVer, anything in the public API can change at any time before ve
To provide some stability to Tendermint users in these 0.X.X days, the MINOR version is used
to signal breaking changes across a subset of the total public API. This subset includes all
interfaces exposed to other processes (cli, rpc, p2p, etc.), as well as parts of the following packages:
interfaces exposed to other processes (cli, rpc, p2p, etc.), but does not
include the in-process Go APIs.
That said, breaking changes in the following packages will be documented in the
CHANGELOG even if they don't lead to MINOR version bumps:
- types
- rpc/client


Loading…
Cancel
Save