File tree 7 files changed +18
-12
lines changed 7 files changed +18
-12
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " cashscript-examples" ,
3
3
"private" : true ,
4
- "version" : " 0.10.0 " ,
4
+ "version" : " 0.10.1 " ,
5
5
"description" : " Usage examples of the CashScript SDK" ,
6
6
"main" : " p2pkh.js" ,
7
7
"type" : " module" ,
14
14
"@bitauth/libauth" : " ^3.0.0" ,
15
15
"@types/node" : " ^12.7.8" ,
16
16
"bip39" : " ^3.0.4" ,
17
- "cashc" : " ^0.10.0 " ,
18
- "cashscript" : " ^0.10.0 " ,
17
+ "cashc" : " ^0.10.1 " ,
18
+ "cashscript" : " ^0.10.1 " ,
19
19
"eslint" : " ^8.56.0" ,
20
20
"typescript" : " ^4.9.5"
21
21
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " testing-suite" ,
3
- "version" : " 0.10.0 " ,
3
+ "version" : " 0.10.1 " ,
4
4
"description" : " Example project to develop and test CashScript contracts" ,
5
5
"main" : " index.js" ,
6
6
"type" : " module" ,
25
25
"test" : " NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest"
26
26
},
27
27
"dependencies" : {
28
- "cashc" : " ^0.10.0 " ,
29
- "cashscript" : " ^0.10.0 " ,
28
+ "cashc" : " ^0.10.1 " ,
29
+ "cashscript" : " ^0.10.1 " ,
30
30
"url-join" : " ^5.0.0"
31
31
},
32
32
"devDependencies" : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " cashc" ,
3
- "version" : " 0.10.0 " ,
3
+ "version" : " 0.10.1 " ,
4
4
"description" : " Compile Bitcoin Cash contracts to Bitcoin Cash Script or artifacts" ,
5
5
"keywords" : [
6
6
" bitcoin" ,
50
50
},
51
51
"dependencies" : {
52
52
"@bitauth/libauth" : " ^3.0.0" ,
53
- "@cashscript/utils" : " ^0.10.0 " ,
53
+ "@cashscript/utils" : " ^0.10.1 " ,
54
54
"antlr4" : " ^4.13.1-patch-1" ,
55
55
"commander" : " ^7.1.0" ,
56
56
"semver" : " ^7.5.4"
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ export * from './Errors.js';
2
2
export * as utils from '@cashscript/utils' ;
3
3
export { compileFile , compileString } from './compiler.js' ;
4
4
5
- export const version = '0.10.0 ' ;
5
+ export const version = '0.10.1 ' ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " cashscript" ,
3
- "version" : " 0.10.0 " ,
3
+ "version" : " 0.10.1 " ,
4
4
"description" : " Easily write and interact with Bitcoin Cash contracts" ,
5
5
"keywords" : [
6
6
" bitcoin cash" ,
44
44
},
45
45
"dependencies" : {
46
46
"@bitauth/libauth" : " ^3.0.0" ,
47
- "@cashscript/utils" : " ^0.10.0 " ,
47
+ "@cashscript/utils" : " ^0.10.1 " ,
48
48
"bip68" : " ^1.0.4" ,
49
49
"bitcoin-rpc-promise-retry" : " ^1.3.0" ,
50
50
"delay" : " ^5.0.0" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @cashscript/utils" ,
3
- "version" : " 0.10.0 " ,
3
+ "version" : " 0.10.1 " ,
4
4
"description" : " CashScript utilities and types" ,
5
5
"keywords" : [
6
6
" bitcoin cash" ,
Original file line number Diff line number Diff line change 2
2
title : Release Notes
3
3
---
4
4
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
+
5
11
## v0.10.0
6
12
7
13
In this version we added proper debugging support for transactions and integration with the BitAuth IDE.
You can’t perform that action at this time.
0 commit comments