From 7c33e8056cbe854519e84ced4067072766c4b372 Mon Sep 17 00:00:00 2001 From: junderw Date: Wed, 7 Aug 2019 18:11:13 +0900 Subject: [PATCH 1/2] Update CHANGELOG --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index cbb2dea..ebfac91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 5.1.3 +__changed__ +- TypeScript types: Made Signer and SignerAsync use any for network since we only check for equivalence. (#1448) +- TypeScript types: Made the args for addInput and addOutput for Psbt actually accept updateInput and updateOutput parameters. (#1449) + # 5.1.2 __added__ - `ECPair` and `bip32` objects now have a lowR boolean attribute defaulted to false. You may set it to true to ensure that the sign method uses low R values (#1442) (This is to enable low R usage in Psbt, since we decided not to give the low R flag to the Psbt class, since it makes more sense to be an attribute of the Signer interface) From 71b7faa52c8fb6e3b4f9bdf5eae4464c0104b5c0 Mon Sep 17 00:00:00 2001 From: junderw Date: Wed, 7 Aug 2019 18:11:19 +0900 Subject: [PATCH 2/2] 5.1.3 --- 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 9aac261..d528ba3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "bitcoinjs-lib", - "version": "5.1.2", + "version": "5.1.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index daa2813..be2321f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bitcoinjs-lib", - "version": "5.1.2", + "version": "5.1.3", "description": "Client-side Bitcoin JavaScript library", "main": "./src/index.js", "types": "./types/index.d.ts",