diff --git a/CHANGELOG.md b/CHANGELOG.md index 4eca811..9410871 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.1.1] - 2023-06-29 + +### Fixed + +- Fixed issue #7 where BIP-137 signatures that were signed using flags for P2SH/P2WPKH would fail verification incorrectly. + ## [1.1.0] - 2023-08-20 ### Added diff --git a/package-lock.json b/package-lock.json index 3dcc691..8857abd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "bip322-js", - "version": "1.1.0", + "version": "1.1.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "bip322-js", - "version": "1.1.0", + "version": "1.1.1", "license": "MIT", "dependencies": { "@bitcoinerlab/secp256k1": "^1.0.2", diff --git a/package.json b/package.json index 55e01da..baeed82 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bip322-js", - "version": "1.1.0", + "version": "1.1.1", "description": "A Javascript library that provides utility functions related to the BIP-322 signature scheme", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -19,7 +19,10 @@ "no-WASM" ], "author": "Ken Sze ", - "repository": "github:ACken2/bip322-js", + "repository": { + "type": "git", + "url": "git+https://github.com/ACken2/bip322-js.git" + }, "license": "MIT", "devDependencies": { "@types/chai": "^4.3.5",