Skip to content

Commit a70a5a5

Browse files
committed
Bump version to 0.8.1
1 parent 96f0028 commit a70a5a5

File tree

7 files changed

+73
-24
lines changed

7 files changed

+73
-24
lines changed

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.8.0",
4+
"version": "0.8.1",
55
"description": "Usage examples of the CashScript SDK",
66
"main": "p2pkh.js",
77
"type": "module",
@@ -11,8 +11,8 @@
1111
"@bitauth/libauth": "^2.0.0-alpha.8",
1212
"@types/node": "^12.7.8",
1313
"bip39": "^3.0.4",
14-
"cashc": "^0.8.0",
15-
"cashscript": "^0.8.0",
14+
"cashc": "^0.8.1",
15+
"cashscript": "^0.8.1",
1616
"typescript": "^4.9.5"
1717
}
1818
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"eslint-config-airbnb-typescript": "^12.3.1",
2121
"eslint-plugin-import": "^2.22.1",
2222
"lerna": "^3.22.1",
23-
"ts-node": "^9.1.1",
23+
"ts-node": "^10.9.1",
2424
"typescript": "^4.9.5"
2525
},
2626
"scripts": {

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.8.0",
3+
"version": "0.8.1",
44
"description": "Compile Bitcoin Cash contracts to Bitcoin Cash Script or artifacts",
55
"keywords": [
66
"bitcoin",
@@ -50,7 +50,7 @@
5050
},
5151
"dependencies": {
5252
"@bitauth/libauth": "^2.0.0-alpha.8",
53-
"@cashscript/utils": "^0.8.0",
53+
"@cashscript/utils": "^0.8.1",
5454
"antlr4ts": "^0.5.0-alpha.4",
5555
"commander": "^7.1.0",
5656
"semver": "^7.3.4"

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

packages/cashscript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cashscript",
3-
"version": "0.8.0",
3+
"version": "0.8.1",
44
"description": "Easily write and interact with Bitcoin Cash contracts",
55
"keywords": [
66
"bitcoin cash",
@@ -44,7 +44,7 @@
4444
},
4545
"dependencies": {
4646
"@bitauth/libauth": "^2.0.0-alpha.8",
47-
"@cashscript/utils": "^0.8.0",
47+
"@cashscript/utils": "^0.8.1",
4848
"bip68": "^1.0.4",
4949
"bitcoin-rpc-promise-retry": "^1.3.0",
5050
"delay": "^5.0.0",

packages/utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cashscript/utils",
3-
"version": "0.8.0",
3+
"version": "0.8.1",
44
"description": "CashScript utilities and types",
55
"keywords": [
66
"bitcoin cash",

yarn.lock

Lines changed: 63 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -711,6 +711,13 @@
711711
resolved "https://registry.yarnpkg.com/@cspell/dict-typescript/-/dict-typescript-1.0.16.tgz#18d20a91c4caf52540c795921a50b0e4ce3bc50c"
712712
integrity sha512-DEKi6vD605ebDhCC4Hrtz29k59TcijPVsmVKheTpMrL1MD/S96Ftb19gW0pEIVK9vwYZIljmGwgz4qYyuM5Liw==
713713

714+
"@cspotcode/source-map-support@^0.8.0":
715+
version "0.8.1"
716+
resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1"
717+
integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==
718+
dependencies:
719+
"@jridgewell/trace-mapping" "0.3.9"
720+
714721
"@eslint/eslintrc@^0.3.0":
715722
version "0.3.0"
716723
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.3.0.tgz#d736d6963d7003b6514e6324bec9c602ac340318"
@@ -1168,6 +1175,14 @@
11681175
resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz#b6461fb0c2964356c469e115f504c95ad97ab88c"
11691176
integrity sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==
11701177

1178+
"@jridgewell/trace-mapping@0.3.9":
1179+
version "0.3.9"
1180+
resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9"
1181+
integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==
1182+
dependencies:
1183+
"@jridgewell/resolve-uri" "^3.0.3"
1184+
"@jridgewell/sourcemap-codec" "^1.4.10"
1185+
11711186
"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.15":
11721187
version "0.3.17"
11731188
resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985"
@@ -2147,6 +2162,26 @@
21472162
resolved "https://registry.yarnpkg.com/@transloadit/prettier-bytes/-/prettier-bytes-0.0.7.tgz#cdb5399f445fdd606ed833872fa0cabdbc51686b"
21482163
integrity sha512-VeJbUb0wEKbcwaSlj5n+LscBl9IPgLPkHVGBkh00cztv6X4L/TJXK58LzFuBKX7/GAfiGhIwH67YTLTlzvIzBA==
21492164

2165+
"@tsconfig/node10@^1.0.7":
2166+
version "1.0.9"
2167+
resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2"
2168+
integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==
2169+
2170+
"@tsconfig/node12@^1.0.7":
2171+
version "1.0.11"
2172+
resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d"
2173+
integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==
2174+
2175+
"@tsconfig/node14@^1.0.0":
2176+
version "1.0.3"
2177+
resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1"
2178+
integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==
2179+
2180+
"@tsconfig/node16@^1.0.2":
2181+
version "1.0.4"
2182+
resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9"
2183+
integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==
2184+
21502185
"@types/babel__core@^7.1.14":
21512186
version "7.20.0"
21522187
resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.0.tgz#61bc5a4cae505ce98e1e36c5445e4bee060d8891"
@@ -2489,6 +2524,11 @@ acorn-jsx@^5.3.1:
24892524
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b"
24902525
integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==
24912526

2527+
acorn-walk@^8.1.1:
2528+
version "8.2.0"
2529+
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1"
2530+
integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==
2531+
24922532
acorn@^3.0.4:
24932533
version "3.3.0"
24942534
resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
@@ -2504,6 +2544,11 @@ acorn@^7.4.0:
25042544
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
25052545
integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
25062546

2547+
acorn@^8.4.1:
2548+
version "8.8.2"
2549+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a"
2550+
integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==
2551+
25072552
after@0.8.2:
25082553
version "0.8.2"
25092554
resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f"
@@ -10094,14 +10139,6 @@ source-map-support@0.5.13:
1009410139
buffer-from "^1.0.0"
1009510140
source-map "^0.6.0"
1009610141

10097-
source-map-support@^0.5.17:
10098-
version "0.5.19"
10099-
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61"
10100-
integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==
10101-
dependencies:
10102-
buffer-from "^1.0.0"
10103-
source-map "^0.6.0"
10104-
1010510142
source-map-url@^0.4.0:
1010610143
version "0.4.0"
1010710144
resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
@@ -10766,16 +10803,23 @@ trim-off-newlines@^1.0.0:
1076610803
resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3"
1076710804
integrity sha1-n5up2e+odkw4dpi8v+sshI8RrbM=
1076810805

10769-
ts-node@^9.1.1:
10770-
version "9.1.1"
10771-
resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-9.1.1.tgz#51a9a450a3e959401bda5f004a72d54b936d376d"
10772-
integrity sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==
10773-
dependencies:
10806+
ts-node@^10.9.1:
10807+
version "10.9.1"
10808+
resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b"
10809+
integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==
10810+
dependencies:
10811+
"@cspotcode/source-map-support" "^0.8.0"
10812+
"@tsconfig/node10" "^1.0.7"
10813+
"@tsconfig/node12" "^1.0.7"
10814+
"@tsconfig/node14" "^1.0.0"
10815+
"@tsconfig/node16" "^1.0.2"
10816+
acorn "^8.4.1"
10817+
acorn-walk "^8.1.1"
1077410818
arg "^4.1.0"
1077510819
create-require "^1.1.0"
1077610820
diff "^4.0.1"
1077710821
make-error "^1.1.1"
10778-
source-map-support "^0.5.17"
10822+
v8-compile-cache-lib "^3.0.1"
1077910823
yn "3.1.1"
1078010824

1078110825
tsconfig-paths@^3.9.0:
@@ -11068,6 +11112,11 @@ uuid@^8.3.0:
1106811112
resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
1106911113
integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
1107011114

11115+
v8-compile-cache-lib@^3.0.1:
11116+
version "3.0.1"
11117+
resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf"
11118+
integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==
11119+
1107111120
v8-compile-cache@^2.0.3:
1107211121
version "2.1.1"
1107311122
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz#54bc3cdd43317bca91e35dcaf305b1a7237de745"

0 commit comments

Comments
 (0)