From febc970a2a3b02c605abedb2842dd072149ef769 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 15:17:23 -0500 Subject: [PATCH] Release v3.1.0-next.3 (#151) Co-authored-by: github-actions[bot] --- .changeset/pre.json | 1 + CHANGELOG.md | 6 ++++++ package.json | 2 +- src/lib/engine/types/template-types.ts | 2 +- 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index a5635631..fb58e135 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -27,6 +27,7 @@ "short-cars-cheat", "sixty-brooms-shout", "sour-ties-allow", + "tall-actors-sell", "twelve-suns-protect", "two-peas-give", "unlucky-windows-remember", diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cb64e72..8dffe6d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # `@bitauth/libauth` +## 3.1.0-next.3 + +### Minor Changes + +- [#150](https://github.com/bitauth/libauth/pull/150) [`836d917`](https://github.com/bitauth/libauth/commit/836d9172f556889150ced64d8d991d1dfa3d3c79) Thanks [@bitjson](https://github.com/bitjson)! - Speculatively implement P2S, OP_EVAL, and OP_POW + ## 3.1.0-next.2 ### Minor Changes diff --git a/package.json b/package.json index 9a532555..b55c6691 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bitauth/libauth", - "version": "3.1.0-next.2", + "version": "3.1.0-next.3", "description": "ultra-lightweight library for Bitcoin Cash, Bitcoin, and Bitauth", "type": "module", "main": "./build/index.js", diff --git a/src/lib/engine/types/template-types.ts b/src/lib/engine/types/template-types.ts index bd285b92..8b44c8bd 100644 --- a/src/lib/engine/types/template-types.ts +++ b/src/lib/engine/types/template-types.ts @@ -841,7 +841,7 @@ export type WalletTemplateScriptLocking = WalletTemplateScript & { * The presence of the `lockingType` property indicates that this script is a * locking script. It must be present on any script referenced by the * `unlocks` property of another script. - * + * * TODO: migrate `standard` -> `p2s` */ lockingType: 'p2sh20' | 'p2sh32' | 'standard';