Skip to content

Commit fac7543

Browse files
committed
Bump version to 0.12.0
1 parent 820b677 commit fac7543

File tree

15 files changed

+28
-28
lines changed

15 files changed

+28
-28
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.11.0;
1+
pragma cashscript ^0.12.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.11.0;
1+
pragma cashscript ^0.12.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.11.0;
1+
pragma cashscript ^0.12.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.11.0;
1+
pragma cashscript ^0.12.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.11.0;
1+
pragma cashscript ^0.12.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.11.5",
4+
"version": "0.12.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.2",
1515
"@types/node": "^22.17.0",
16-
"cashc": "^0.11.5",
17-
"cashscript": "^0.11.5",
16+
"cashc": "^0.12.0",
17+
"cashscript": "^0.12.0",
1818
"eslint": "^8.56.0",
1919
"typescript": "^5.9.2"
2020
}

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.11.5",
3+
"version": "0.12.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.2",
29-
"cashc": "^0.11.5",
30-
"cashscript": "^0.11.5",
29+
"cashc": "^0.12.0",
30+
"cashscript": "^0.12.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.11.0;
1+
pragma cashscript ^0.12.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.11.5",
3+
"version": "0.12.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.11.5",
55+
"@cashscript/utils": "^0.12.0",
5656
"antlr4": "^4.13.2",
5757
"commander": "^14.0.0",
5858
"semver": "^7.7.2"

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.11.5';
5+
export const version = '0.12.0';

0 commit comments

Comments
 (0)