diff --git a/CHANGELOG.md b/CHANGELOG.md index de52382d9..54207dc5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# Bcash Release Notes & Changelog + +## v1.0.2 + +Major changes include backports from bcoin: + +- `buffer-map` refactor +- bug fixes + +### Notable Changes + +- Initial tagged bcash release. + # Bcoin Release Notes & Changelog ## v1.x diff --git a/lib/pkg.js b/lib/pkg.js index 99ba9ae89..c3ba45fb6 100644 --- a/lib/pkg.js +++ b/lib/pkg.js @@ -11,7 +11,7 @@ * @const {String} */ -exports.version = 'v1.0.2-beta'; +exports.version = 'v1.0.2'; /** * Repository URL. diff --git a/package.json b/package.json index 8b0c68edd..c76261853 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bcash", - "version": "1.0.2-beta", + "version": "1.0.2", "description": "Bitcoin cash bike-shed", "license": "MIT", "repository": "git://github.com/bcoin-org/bcash.git", @@ -86,5 +86,8 @@ "./lib/workers/child": "./lib/workers/child-browser.js", "./lib/workers/parent": "./lib/workers/parent-browser.js", "./lib/bcash": "./lib/bcoin-browser.js" + }, + "bcoin": { + "upstream": "15b024a3928ea8a54732bb2f5177ab1668468258" } }