diff --git a/CHANGELOG.md b/CHANGELOG.md index 454118b3..77876e1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/lib/pkg.js b/lib/pkg.js index e9d4a67d..1b012df8 100644 --- a/lib/pkg.js +++ b/lib/pkg.js @@ -11,7 +11,7 @@ * @const {String} */ -exports.version = 'v1.0.0-beta.6'; +exports.version = 'v1.0.0-beta.7'; /** * Repository URL. diff --git a/package.json b/package.json index 747ac429..59c6ccb1 100644 --- a/package.json +++ b/package.json @@ -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",