v1.0.0-beta.7

This commit is contained in:
Christopher Jeffrey 2017-03-01 12:26:55 -08:00
parent 53f607e19f
commit bade290765
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD
3 changed files with 14 additions and 2 deletions

View File

@ -1,5 +1,17 @@
# Bcoin Release Notes & Changelog
## v1.0.0-beta.7
### Notable Changes
- __http__ - Always display spent coins in tx routes (e.g. `/tx/[txid]`).
- __mempool__ - An on-disk mempool is now exposed via `--persistent-mempool`
(also makes fee data persistent).
- __chain__ - `chain.add` now takes a `flags` parameter to avoid POW and
non-contextual checks if necessary.
- __net__ - HostList is now potentially persistent with a `hostLocation` option.
- __net__ - Smarter stall behavior and timeouts.
## v1.0.0-beta.6
### Notable Changes

View File

@ -11,7 +11,7 @@
* @const {String}
*/
exports.version = 'v1.0.0-beta.6';
exports.version = 'v1.0.0-beta.7';
/**
* Repository URL.

View File

@ -1,6 +1,6 @@
{
"name": "bcoin",
"version": "1.0.0-beta.6",
"version": "1.0.0-beta.7",
"description": "Bitcoin bike-shed",
"license": "MIT",
"repository": "git://github.com/bcoin-org/bcoin.git",