Skip to content

Commit 5f0c320

Browse files
committed
Bump version to 0.9.2 and add release notes
1 parent 996a8d7 commit 5f0c320

File tree

6 files changed

+19
-9
lines changed

6 files changed

+19
-9
lines changed

examples/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "cashscript-examples",
33
"private": true,
4-
"version": "0.9.1",
4+
"version": "0.9.2",
55
"description": "Usage examples of the CashScript SDK",
66
"main": "p2pkh.js",
77
"type": "module",
@@ -11,8 +11,8 @@
1111
"@bitauth/libauth": "^2.0.0-alpha.8",
1212
"@types/node": "^12.7.8",
1313
"bip39": "^3.0.4",
14-
"cashc": "^0.9.1",
15-
"cashscript": "^0.9.1",
14+
"cashc": "^0.9.2",
15+
"cashscript": "^0.9.2",
1616
"typescript": "^4.9.5"
1717
}
1818
}

packages/cashc/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cashc",
3-
"version": "0.9.1",
3+
"version": "0.9.2",
44
"description": "Compile Bitcoin Cash contracts to Bitcoin Cash Script or artifacts",
55
"keywords": [
66
"bitcoin",
@@ -50,7 +50,7 @@
5050
},
5151
"dependencies": {
5252
"@bitauth/libauth": "^2.0.0-alpha.8",
53-
"@cashscript/utils": "^0.9.1",
53+
"@cashscript/utils": "^0.9.2",
5454
"antlr4ts": "^0.5.0-alpha.4",
5555
"commander": "^7.1.0",
5656
"semver": "^7.3.4"

packages/cashc/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ export * from './Errors.js';
22
export * as utils from '@cashscript/utils';
33
export { compileFile, compileString } from './compiler.js';
44

5-
export const version = '0.9.1';
5+
export const version = '0.9.2';

packages/cashscript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cashscript",
3-
"version": "0.9.1",
3+
"version": "0.9.2",
44
"description": "Easily write and interact with Bitcoin Cash contracts",
55
"keywords": [
66
"bitcoin cash",
@@ -44,7 +44,7 @@
4444
},
4545
"dependencies": {
4646
"@bitauth/libauth": "^2.0.0-alpha.8",
47-
"@cashscript/utils": "^0.9.1",
47+
"@cashscript/utils": "^0.9.2",
4848
"bip68": "^1.0.4",
4949
"bitcoin-rpc-promise-retry": "^1.3.0",
5050
"delay": "^5.0.0",

packages/utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cashscript/utils",
3-
"version": "0.9.1",
3+
"version": "0.9.2",
44
"description": "CashScript utilities and types",
55
"keywords": [
66
"bitcoin cash",

website/docs/releases/release-notes.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
title: Release Notes
33
---
44

5+
## v0.9.2
6+
7+
#### CashScript SDK
8+
9+
- :bug: Fix bug where UTXOs would be needlessly retrieved from the network during `build()` calls.
10+
- :bug: Fix off-by-one fee calculation error with transactions that have many outputs.
11+
- :bug: Fix bug where no error was thrown when invalid NFT commitment or token category were provided.
12+
- :hammer_and_wrench: Export all interfaces from CashScript's `interfaces.ts`.
13+
- :hammer_and_wrench: Merge duplicate code between Transaction.ts and TransactionBuilder.ts
14+
515
## v0.9.1
616

717
#### CashScript SDK

0 commit comments

Comments
 (0)