v1.0.0-beta.9

This commit is contained in:
Christopher Jeffrey 2017-03-05 18:25:15 -08:00
parent e9650da89c
commit 6d477b7588
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.9
### Notable Changes
- __mempool__ - Trimming now removes dependency chains by cumulative fee rate.
- __mempool__ - Cumulative descendant fees are now updated properly when
removing a transaction.
- __net__ - Preliminary upnp support for adding port mappings.
- __chain/mempool/miner__ - Various atomicity fixes and extra sanity checking.
- __pool/peer__ - Peer height is now tracked and exposed on the RPC as
`bestheight`.
## v1.0.0-beta.8
### Notable Changes

View File

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

View File

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