From 59162f03fc6e834eadf56bbc1159e4446c94cbc4 Mon Sep 17 00:00:00 2001 From: Rosco Kalis Date: Tue, 10 Sep 2024 11:56:45 +0200 Subject: [PATCH] Bump version to 0.10.0 --- examples/package.json | 6 +++--- examples/testing-suite/artifacts/example.json | 4 ++-- examples/testing-suite/package.json | 7 ++++--- packages/cashc/package.json | 4 ++-- packages/cashc/src/index.ts | 2 +- packages/cashscript/package.json | 4 ++-- packages/cashscript/test/fixture/announcement.json | 4 ++-- packages/cashscript/test/fixture/bigint.json | 4 ++-- packages/cashscript/test/fixture/bounded_bytes.json | 4 ++-- packages/cashscript/test/fixture/hodl_vault.json | 4 ++-- packages/cashscript/test/fixture/mecenas.json | 4 ++-- packages/cashscript/test/fixture/p2palindrome.json | 4 ++-- packages/cashscript/test/fixture/p2pkh.json | 4 ++-- packages/cashscript/test/fixture/simple_covenant.json | 4 ++-- .../cashscript/test/fixture/token_category_comparison.json | 4 ++-- .../cashscript/test/fixture/transfer_with_timeout.json | 4 ++-- packages/utils/package.json | 2 +- 17 files changed, 35 insertions(+), 34 deletions(-) diff --git a/examples/package.json b/examples/package.json index 0307f788..c379660e 100644 --- a/examples/package.json +++ b/examples/package.json @@ -1,7 +1,7 @@ { "name": "cashscript-examples", "private": true, - "version": "0.10.0-next.6", + "version": "0.10.0", "description": "Usage examples of the CashScript SDK", "main": "p2pkh.js", "type": "module", @@ -14,8 +14,8 @@ "@bitauth/libauth": "^3.0.0", "@types/node": "^12.7.8", "bip39": "^3.0.4", - "cashc": "^0.10.0-next.6", - "cashscript": "^0.10.0-next.6", + "cashc": "^0.10.0", + "cashscript": "^0.10.0", "eslint": "^8.56.0", "typescript": "^4.9.5" } diff --git a/examples/testing-suite/artifacts/example.json b/examples/testing-suite/artifacts/example.json index b5b4bd75..7104e362 100644 --- a/examples/testing-suite/artifacts/example.json +++ b/examples/testing-suite/artifacts/example.json @@ -41,7 +41,7 @@ }, "compiler": { "name": "cashc", - "version": "0.10.0-next.6" + "version": "0.10.0" }, - "updatedAt": "2024-08-06T09:59:35.164Z" + "updatedAt": "2024-09-10T09:55:42.448Z" } \ No newline at end of file diff --git a/examples/testing-suite/package.json b/examples/testing-suite/package.json index 36b5f308..7c0582ce 100644 --- a/examples/testing-suite/package.json +++ b/examples/testing-suite/package.json @@ -1,6 +1,6 @@ { "name": "testing-suite", - "version": "0.10.0-next.6", + "version": "0.10.0", "description": "Example project to develop and test CashScript contracts", "main": "index.js", "type": "module", @@ -25,8 +25,9 @@ "test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest" }, "dependencies": { - "cashc": "^0.10.0-next.6", - "cashscript": "^0.10.0-next.6" + "cashc": "^0.10.0", + "cashscript": "^0.10.0", + "url-join": "^5.0.0" }, "devDependencies": { "@jest/globals": "^29.4.1", diff --git a/packages/cashc/package.json b/packages/cashc/package.json index 3e3a70b5..b9ec4434 100644 --- a/packages/cashc/package.json +++ b/packages/cashc/package.json @@ -1,6 +1,6 @@ { "name": "cashc", - "version": "0.10.0-next.6", + "version": "0.10.0", "description": "Compile Bitcoin Cash contracts to Bitcoin Cash Script or artifacts", "keywords": [ "bitcoin", @@ -50,7 +50,7 @@ }, "dependencies": { "@bitauth/libauth": "^3.0.0", - "@cashscript/utils": "^0.10.0-next.6", + "@cashscript/utils": "^0.10.0", "antlr4": "^4.13.1-patch-1", "commander": "^7.1.0", "semver": "^7.5.4" diff --git a/packages/cashc/src/index.ts b/packages/cashc/src/index.ts index e05ef6ec..72b37416 100644 --- a/packages/cashc/src/index.ts +++ b/packages/cashc/src/index.ts @@ -2,4 +2,4 @@ export * from './Errors.js'; export * as utils from '@cashscript/utils'; export { compileFile, compileString } from './compiler.js'; -export const version = '0.10.0-next.6'; +export const version = '0.10.0'; diff --git a/packages/cashscript/package.json b/packages/cashscript/package.json index d58f4a61..4a8d48ba 100644 --- a/packages/cashscript/package.json +++ b/packages/cashscript/package.json @@ -1,6 +1,6 @@ { "name": "cashscript", - "version": "0.10.0-next.6", + "version": "0.10.0", "description": "Easily write and interact with Bitcoin Cash contracts", "keywords": [ "bitcoin cash", @@ -44,7 +44,7 @@ }, "dependencies": { "@bitauth/libauth": "^3.0.0", - "@cashscript/utils": "^0.10.0-next.6", + "@cashscript/utils": "^0.10.0", "bip68": "^1.0.4", "bitcoin-rpc-promise-retry": "^1.3.0", "delay": "^5.0.0", diff --git a/packages/cashscript/test/fixture/announcement.json b/packages/cashscript/test/fixture/announcement.json index 39c9e255..0b1d40dc 100644 --- a/packages/cashscript/test/fixture/announcement.json +++ b/packages/cashscript/test/fixture/announcement.json @@ -34,7 +34,7 @@ }, "compiler": { "name": "cashc", - "version": "0.10.0-next.6" + "version": "0.10.0" }, - "updatedAt": "2024-09-05T13:25:22.357Z" + "updatedAt": "2024-09-10T09:54:01.248Z" } \ No newline at end of file diff --git a/packages/cashscript/test/fixture/bigint.json b/packages/cashscript/test/fixture/bigint.json index 3313e9bb..ae33572a 100644 --- a/packages/cashscript/test/fixture/bigint.json +++ b/packages/cashscript/test/fixture/bigint.json @@ -35,7 +35,7 @@ }, "compiler": { "name": "cashc", - "version": "0.10.0-next.6" + "version": "0.10.0" }, - "updatedAt": "2024-09-05T13:25:22.095Z" + "updatedAt": "2024-09-10T09:54:00.989Z" } \ No newline at end of file diff --git a/packages/cashscript/test/fixture/bounded_bytes.json b/packages/cashscript/test/fixture/bounded_bytes.json index 7f4a9550..dadf6205 100644 --- a/packages/cashscript/test/fixture/bounded_bytes.json +++ b/packages/cashscript/test/fixture/bounded_bytes.json @@ -31,7 +31,7 @@ }, "compiler": { "name": "cashc", - "version": "0.10.0-next.6" + "version": "0.10.0" }, - "updatedAt": "2024-09-05T13:25:23.083Z" + "updatedAt": "2024-09-10T09:54:01.995Z" } \ No newline at end of file diff --git a/packages/cashscript/test/fixture/hodl_vault.json b/packages/cashscript/test/fixture/hodl_vault.json index 8937fdea..d5a511cd 100644 --- a/packages/cashscript/test/fixture/hodl_vault.json +++ b/packages/cashscript/test/fixture/hodl_vault.json @@ -68,7 +68,7 @@ }, "compiler": { "name": "cashc", - "version": "0.10.0-next.6" + "version": "0.10.0" }, - "updatedAt": "2024-09-05T13:25:22.594Z" + "updatedAt": "2024-09-10T09:54:01.493Z" } \ No newline at end of file diff --git a/packages/cashscript/test/fixture/mecenas.json b/packages/cashscript/test/fixture/mecenas.json index 916d7620..484b62c0 100644 --- a/packages/cashscript/test/fixture/mecenas.json +++ b/packages/cashscript/test/fixture/mecenas.json @@ -72,7 +72,7 @@ }, "compiler": { "name": "cashc", - "version": "0.10.0-next.6" + "version": "0.10.0" }, - "updatedAt": "2024-09-05T13:25:24.222Z" + "updatedAt": "2024-09-10T09:54:03.279Z" } \ No newline at end of file diff --git a/packages/cashscript/test/fixture/p2palindrome.json b/packages/cashscript/test/fixture/p2palindrome.json index 67c2b49c..9fbf038d 100644 --- a/packages/cashscript/test/fixture/p2palindrome.json +++ b/packages/cashscript/test/fixture/p2palindrome.json @@ -27,7 +27,7 @@ }, "compiler": { "name": "cashc", - "version": "0.10.0-next.6" + "version": "0.10.0" }, - "updatedAt": "2024-09-05T13:25:22.851Z" + "updatedAt": "2024-09-10T09:54:01.764Z" } \ No newline at end of file diff --git a/packages/cashscript/test/fixture/p2pkh.json b/packages/cashscript/test/fixture/p2pkh.json index 35574b7a..b17bf5fc 100644 --- a/packages/cashscript/test/fixture/p2pkh.json +++ b/packages/cashscript/test/fixture/p2pkh.json @@ -40,7 +40,7 @@ }, "compiler": { "name": "cashc", - "version": "0.10.0-next.6" + "version": "0.10.0" }, - "updatedAt": "2024-09-05T13:25:23.980Z" + "updatedAt": "2024-09-10T09:54:03.012Z" } \ No newline at end of file diff --git a/packages/cashscript/test/fixture/simple_covenant.json b/packages/cashscript/test/fixture/simple_covenant.json index 0573f08d..614c0fbd 100644 --- a/packages/cashscript/test/fixture/simple_covenant.json +++ b/packages/cashscript/test/fixture/simple_covenant.json @@ -42,7 +42,7 @@ }, "compiler": { "name": "cashc", - "version": "0.10.0-next.6" + "version": "0.10.0" }, - "updatedAt": "2024-09-05T13:25:23.302Z" + "updatedAt": "2024-09-10T09:54:02.299Z" } \ No newline at end of file diff --git a/packages/cashscript/test/fixture/token_category_comparison.json b/packages/cashscript/test/fixture/token_category_comparison.json index 28b9b243..657da061 100644 --- a/packages/cashscript/test/fixture/token_category_comparison.json +++ b/packages/cashscript/test/fixture/token_category_comparison.json @@ -22,7 +22,7 @@ }, "compiler": { "name": "cashc", - "version": "0.10.0-next.6" + "version": "0.10.0" }, - "updatedAt": "2024-09-05T13:25:23.764Z" + "updatedAt": "2024-09-10T09:54:02.765Z" } \ No newline at end of file diff --git a/packages/cashscript/test/fixture/transfer_with_timeout.json b/packages/cashscript/test/fixture/transfer_with_timeout.json index 6064fd4f..1e94abcc 100644 --- a/packages/cashscript/test/fixture/transfer_with_timeout.json +++ b/packages/cashscript/test/fixture/transfer_with_timeout.json @@ -57,7 +57,7 @@ }, "compiler": { "name": "cashc", - "version": "0.10.0-next.6" + "version": "0.10.0" }, - "updatedAt": "2024-09-05T13:25:23.528Z" + "updatedAt": "2024-09-10T09:54:02.536Z" } \ No newline at end of file diff --git a/packages/utils/package.json b/packages/utils/package.json index 732ee591..c8806c62 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@cashscript/utils", - "version": "0.10.0-next.6", + "version": "0.10.0", "description": "CashScript utilities and types", "keywords": [ "bitcoin cash",