Skip to content

Commit 1514d30

Browse files
committed
Bump version to 0.13.0-next.0
1 parent e45f428 commit 1514d30

File tree

18 files changed

+32
-32
lines changed

18 files changed

+32
-32
lines changed

examples/announcement.cash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pragma cashscript ^0.12.0;
1+
pragma cashscript ^0.13.0;
22

33
/* This is a contract showcasing covenants outside of regular transactional use.
44
* It enforces the contract to make an "announcement" on Memo.cash, and send the

examples/hodl_vault.cash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pragma cashscript ^0.12.0;
1+
pragma cashscript ^0.13.0;
22

33
// This contract forces HODLing until a certain price target has been reached
44
// A minimum block is provided to ensure that oracle price entries from before this block are disregarded

examples/mecenas.cash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pragma cashscript ^0.12.0;
1+
pragma cashscript ^0.13.0;
22

33
/* This is an unofficial CashScript port of Licho's Mecenas contract. It is
44
* not compatible with Licho's EC plugin, but rather meant as a demonstration

examples/mecenas_locktime.cash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pragma cashscript ^0.12.0;
1+
pragma cashscript ^0.13.0;
22

33
// This is an experimental contract for a more "streaming" Mecenas experience
44
// Completely untested, just a concept

examples/p2pkh.cash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pragma cashscript ^0.12.0;
1+
pragma cashscript ^0.13.0;
22

33
contract P2PKH(bytes20 pkh) {
44
// Require pk to match stored pkh and signature to match

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.12.0",
4+
"version": "0.13.0-next.0",
55
"description": "Usage examples of the CashScript SDK",
66
"main": "p2pkh.js",
77
"type": "module",
@@ -13,8 +13,8 @@
1313
"dependencies": {
1414
"@bitauth/libauth": "^3.1.0-next.8",
1515
"@types/node": "^22.17.0",
16-
"cashc": "^0.12.0",
17-
"cashscript": "^0.12.0",
16+
"cashc": "^0.13.0-next.0",
17+
"cashscript": "^0.13.0-next.0",
1818
"eslint": "^8.56.0",
1919
"typescript": "^5.9.2"
2020
}

examples/testing-suite/artifacts/example.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
},
4242
"compiler": {
4343
"name": "cashc",
44-
"version": "0.12.0"
44+
"version": "0.13.0"
4545
},
4646
"updatedAt": "2025-10-02T09:56:11.510Z"
47-
}
47+
}

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.12.0",
3+
"version": "0.13.0-next.0",
44
"description": "Example project to develop and test CashScript contracts",
55
"main": "index.js",
66
"type": "module",
@@ -26,8 +26,8 @@
2626
},
2727
"dependencies": {
2828
"@bitauth/libauth": "^3.1.0-next.8",
29-
"cashc": "^0.12.0",
30-
"cashscript": "^0.12.0",
29+
"cashc": "^0.13.0-next.0",
30+
"cashscript": "^0.13.0-next.0",
3131
"url-join": "^5.0.0"
3232
},
3333
"devDependencies": {

examples/transfer_with_timeout.cash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pragma cashscript ^0.12.0;
1+
pragma cashscript ^0.13.0;
22

33
contract TransferWithTimeout(
44
pubkey sender,

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.12.0",
3+
"version": "0.13.0-next.0",
44
"description": "Compile Bitcoin Cash contracts to Bitcoin Cash Script or artifacts",
55
"keywords": [
66
"bitcoin",
@@ -52,7 +52,7 @@
5252
},
5353
"dependencies": {
5454
"@bitauth/libauth": "^3.1.0-next.8",
55-
"@cashscript/utils": "^0.12.0",
55+
"@cashscript/utils": "^0.13.0-next.0",
5656
"antlr4": "^4.13.2",
5757
"commander": "^14.0.0",
5858
"semver": "^7.7.2"

0 commit comments

Comments
 (0)