Skip to content

Commit 0043ea3

Browse files
committed
Bump version to 0.9.1 and add release notes
1 parent 7dfdca7 commit 0043ea3

File tree

6 files changed

+14
-9
lines changed

6 files changed

+14
-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.0",
4+
"version": "0.9.1",
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.0",
15-
"cashscript": "^0.9.0",
14+
"cashc": "^0.9.1",
15+
"cashscript": "^0.9.1",
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.0",
3+
"version": "0.9.1",
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.0",
53+
"@cashscript/utils": "^0.9.1",
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.0';
5+
export const version = '0.9.1';

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.0",
3+
"version": "0.9.1",
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.0",
47+
"@cashscript/utils": "^0.9.1",
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.0",
3+
"version": "0.9.1",
44
"description": "CashScript utilities and types",
55
"keywords": [
66
"bitcoin cash",

website/docs/releases/release-notes.md

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

5+
## v0.9.1
6+
7+
#### CashScript SDK
8+
- :bug: Fix TransactionBuilder export bug.
9+
510
## v0.9.0
611

712
#### CashScript SDK

0 commit comments

Comments
 (0)