Skip to content

Commit 0dd95d5

Browse files
committed
Bump version to 0.10.1 and add release notes for it
1 parent d2b760b commit 0dd95d5

File tree

7 files changed

+18
-12
lines changed

7 files changed

+18
-12
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.10.0",
4+
"version": "0.10.1",
55
"description": "Usage examples of the CashScript SDK",
66
"main": "p2pkh.js",
77
"type": "module",
@@ -14,8 +14,8 @@
1414
"@bitauth/libauth": "^3.0.0",
1515
"@types/node": "^12.7.8",
1616
"bip39": "^3.0.4",
17-
"cashc": "^0.10.0",
18-
"cashscript": "^0.10.0",
17+
"cashc": "^0.10.1",
18+
"cashscript": "^0.10.1",
1919
"eslint": "^8.56.0",
2020
"typescript": "^4.9.5"
2121
}

examples/testing-suite/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "testing-suite",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "Example project to develop and test CashScript contracts",
55
"main": "index.js",
66
"type": "module",
@@ -25,8 +25,8 @@
2525
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest"
2626
},
2727
"dependencies": {
28-
"cashc": "^0.10.0",
29-
"cashscript": "^0.10.0",
28+
"cashc": "^0.10.1",
29+
"cashscript": "^0.10.1",
3030
"url-join": "^5.0.0"
3131
},
3232
"devDependencies": {

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.10.0",
3+
"version": "0.10.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": "^3.0.0",
53-
"@cashscript/utils": "^0.10.0",
53+
"@cashscript/utils": "^0.10.1",
5454
"antlr4": "^4.13.1-patch-1",
5555
"commander": "^7.1.0",
5656
"semver": "^7.5.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.10.0';
5+
export const version = '0.10.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.10.0",
3+
"version": "0.10.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": "^3.0.0",
47-
"@cashscript/utils": "^0.10.0",
47+
"@cashscript/utils": "^0.10.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.10.0",
3+
"version": "0.10.1",
44
"description": "CashScript utilities and types",
55
"keywords": [
66
"bitcoin cash",

website/docs/releases/release-notes.md

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

5+
## v0.10.1
6+
7+
#### CashScript SDK
8+
- :bug: Fix bug with `MockNetworkProvider` returning the wrong `Network` type (now returns `Network.MOCKNET` / `"mocknet"`).
9+
- :bug: Fix bug in debug tooling where incorrect placeholder keys were used when evaluating transactions with P2PKH inputs.
10+
511
## v0.10.0
612

713
In this version we added proper debugging support for transactions and integration with the BitAuth IDE.

0 commit comments

Comments
 (0)