Skip to content

Commit a868ebc

Browse files
committed
Bump version to 0.13.0-next.0
1 parent 6847700 commit a868ebc

18 files changed

Lines changed: 32 additions & 32 deletions

File tree

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.1",
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.1",
17-
"cashscript": "^0.12.1",
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-12-09T10:19:09.338Z"
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.1",
3+
"version": "0.13.0-next.0",
44
"description": "Example project to develop and test CashScript contracts",
55
"main": "index.js",
66
"type": "module",
@@ -24,8 +24,8 @@
2424
},
2525
"dependencies": {
2626
"@bitauth/libauth": "^3.1.0-next.8",
27-
"cashc": "^0.12.1",
28-
"cashscript": "^0.12.1",
27+
"cashc": "^0.13.0-next.0",
28+
"cashscript": "^0.13.0-next.0",
2929
"url-join": "^5.0.0"
3030
},
3131
"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.1",
3+
"version": "0.13.0-next.0",
44
"description": "Compile Bitcoin Cash contracts to Bitcoin Cash Script or artifacts",
55
"keywords": [
66
"bitcoin",
@@ -48,7 +48,7 @@
4848
},
4949
"dependencies": {
5050
"@bitauth/libauth": "^3.1.0-next.8",
51-
"@cashscript/utils": "^0.12.1",
51+
"@cashscript/utils": "^0.13.0-next.0",
5252
"antlr4": "^4.13.2",
5353
"commander": "^14.0.0",
5454
"semver": "^7.7.2"

0 commit comments

Comments
 (0)