From b31049061b529dab0bd7fd83eaa009e9581003dc Mon Sep 17 00:00:00 2001 From: junderw Date: Mon, 6 Jan 2020 12:31:00 +0900 Subject: [PATCH 1/2] CHANGELOG bump --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0f1e66..fecfc19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 5.1.7 +__fixed__ +- Fixed Transaction class Output interface typing for TypeScript (#1506) +- Add `weight()` to Block class, add optional includeWitness arg to Transaction byteLength method (#1515) +- Match the old TransactionBuilder behavior of allowing for multiple instances of the same pubkey to be in a p2ms script for PSBT (#1519) + +__added__ +- Allow the API consumer to pass in the finalizer functions to allow for any type of transaction to be finalized. It places the most crucial part of transaction construction on the consumer, and should be used with caution. (#1491) + # 5.1.6 __fixed__ - `PsbtOutputExtended` did not support using the address attribute properly. It is now fixed. From a8194e55871df08ea4b9ec3b315167f52a7d0ffa Mon Sep 17 00:00:00 2001 From: junderw Date: Mon, 6 Jan 2020 12:31:06 +0900 Subject: [PATCH 2/2] 5.1.7 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 95bca8c..41f545c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "bitcoinjs-lib", - "version": "5.1.6", + "version": "5.1.7", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 7b87d7e..135402b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bitcoinjs-lib", - "version": "5.1.6", + "version": "5.1.7", "description": "Client-side Bitcoin JavaScript library", "main": "./src/index.js", "types": "./types/index.d.ts",