Skip to content

Commit b215f4c

Browse files
authored
Merge pull request #805 from web3-api-build-bot/release/0.0.1-prealpha.70
Web3API 0.0.1-prealpha.70
2 parents e8bb9c6 + 91de690 commit b215f4c

File tree

36 files changed

+130
-130
lines changed

36 files changed

+130
-130
lines changed

packages/cli/package.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@web3api/cli",
33
"description": "Web3API CLI",
4-
"version": "0.0.1-prealpha.69",
4+
"version": "0.0.1-prealpha.70",
55
"license": "MIT",
66
"repository": {
77
"type": "git",
@@ -29,17 +29,17 @@
2929
},
3030
"dependencies": {
3131
"@formatjs/intl": "1.8.2",
32-
"@web3api/asyncify-js": "0.0.1-prealpha.69",
33-
"@web3api/client-js": "0.0.1-prealpha.69",
34-
"@web3api/client-test-env": "0.0.1-prealpha.69",
35-
"@web3api/core-js": "0.0.1-prealpha.69",
36-
"@web3api/ens-plugin-js": "0.0.1-prealpha.69",
37-
"@web3api/ethereum-plugin-js": "0.0.1-prealpha.69",
38-
"@web3api/ipfs-plugin-js": "0.0.1-prealpha.69",
39-
"@web3api/os-js": "0.0.1-prealpha.69",
40-
"@web3api/schema-bind": "0.0.1-prealpha.69",
41-
"@web3api/schema-compose": "0.0.1-prealpha.69",
42-
"@web3api/schema-parse": "0.0.1-prealpha.69",
32+
"@web3api/asyncify-js": "0.0.1-prealpha.70",
33+
"@web3api/client-js": "0.0.1-prealpha.70",
34+
"@web3api/client-test-env": "0.0.1-prealpha.70",
35+
"@web3api/core-js": "0.0.1-prealpha.70",
36+
"@web3api/ens-plugin-js": "0.0.1-prealpha.70",
37+
"@web3api/ethereum-plugin-js": "0.0.1-prealpha.70",
38+
"@web3api/ipfs-plugin-js": "0.0.1-prealpha.70",
39+
"@web3api/os-js": "0.0.1-prealpha.70",
40+
"@web3api/schema-bind": "0.0.1-prealpha.70",
41+
"@web3api/schema-compose": "0.0.1-prealpha.70",
42+
"@web3api/schema-parse": "0.0.1-prealpha.70",
4343
"assemblyscript": "0.19.1",
4444
"axios": "0.21.2",
4545
"chalk": "4.1.0",
@@ -65,7 +65,7 @@
6565
"@types/jest": "26.0.8",
6666
"@types/node": "12.12.26",
6767
"@types/rimraf": "3.0.0",
68-
"@web3api/test-env-js": "0.0.1-prealpha.69",
68+
"@web3api/test-env-js": "0.0.1-prealpha.70",
6969
"cross-env": "7.0.3",
7070
"dir-compare": "3.3.0",
7171
"eslint-plugin-formatjs": "2.12.7",

packages/cli/src/__tests__/project/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@web3api/test-project",
3-
"version": "0.0.1-prealpha.69",
3+
"version": "0.0.1-prealpha.70",
44
"license": "MIT",
55
"private": true,
66
"scripts": {
@@ -10,8 +10,8 @@
1010
"test:env:down": "w3 test-env down"
1111
},
1212
"dependencies": {
13-
"@web3api/ethereum-plugin-js": "0.0.1-prealpha.69",
14-
"@web3api/wasm-as": "0.0.1-prealpha.69"
13+
"@web3api/ethereum-plugin-js": "0.0.1-prealpha.70",
14+
"@web3api/wasm-as": "0.0.1-prealpha.70"
1515
},
1616
"devDependencies": {
1717
"assemblyscript": "0.19.1",

packages/core-interfaces/logger/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "logger-interface",
33
"description": "Web3API Logger Interface",
44
"private": true,
5-
"version": "0.0.1-prealpha.69",
5+
"version": "0.0.1-prealpha.70",
66
"scripts": {
77
"build": "npx w3 build",
88
"lint": "eslint --color -c ../../../.eslintrc.js .",
@@ -11,6 +11,6 @@
1111
"deploy": "npx w3 build --ipfs http://localhost:5001"
1212
},
1313
"devDependencies": {
14-
"@web3api/cli": "0.0.1-prealpha.69"
14+
"@web3api/cli": "0.0.1-prealpha.70"
1515
}
1616
}

packages/core-interfaces/uri-resolver/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "uri-resolver-interface",
33
"description": "URI Resolver Interface",
44
"private": true,
5-
"version": "0.0.1-prealpha.69",
5+
"version": "0.0.1-prealpha.70",
66
"scripts": {
77
"build": "npx w3 build",
88
"lint": "eslint --color -c ../../../.eslintrc.js .",
@@ -11,6 +11,6 @@
1111
"deploy": "npx w3 build --ipfs http://localhost:5001"
1212
},
1313
"devDependencies": {
14-
"@web3api/cli": "0.0.1-prealpha.69"
14+
"@web3api/cli": "0.0.1-prealpha.70"
1515
}
1616
}

packages/js/asyncify/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@web3api/asyncify-js",
33
"description": "Async Wasm Imports Support Using Asyncify",
4-
"version": "0.0.1-prealpha.69",
4+
"version": "0.0.1-prealpha.70",
55
"license": "MIT",
66
"repository": {
77
"type": "git",

packages/js/client/package.json

+18-18
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@web3api/client-js",
33
"description": "Web3API Javascript Client",
4-
"version": "0.0.1-prealpha.69",
4+
"version": "0.0.1-prealpha.70",
55
"license": "MIT",
66
"repository": {
77
"type": "git",
@@ -20,19 +20,19 @@
2020
"test:watch": "jest --watch --passWithNoTests --verbose --detectOpenHandles"
2121
},
2222
"dependencies": {
23-
"@web3api/asyncify-js": "0.0.1-prealpha.69",
24-
"@web3api/core-js": "0.0.1-prealpha.69",
25-
"@web3api/ens-plugin-js": "0.0.1-prealpha.69",
26-
"@web3api/ethereum-plugin-js": "0.0.1-prealpha.69",
27-
"@web3api/fs-plugin-js": "0.0.1-prealpha.69",
28-
"@web3api/graph-node-plugin-js": "0.0.1-prealpha.69",
29-
"@web3api/http-plugin-js": "0.0.1-prealpha.69",
30-
"@web3api/ipfs-plugin-js": "0.0.1-prealpha.69",
31-
"@web3api/logger-plugin-js": "0.0.1-prealpha.69",
32-
"@web3api/schema-parse": "0.0.1-prealpha.69",
33-
"@web3api/sha3-plugin-js": "0.0.1-prealpha.69",
34-
"@web3api/tracing-js": "0.0.1-prealpha.69",
35-
"@web3api/uts46-plugin-js": "0.0.1-prealpha.69",
23+
"@web3api/asyncify-js": "0.0.1-prealpha.70",
24+
"@web3api/core-js": "0.0.1-prealpha.70",
25+
"@web3api/ens-plugin-js": "0.0.1-prealpha.70",
26+
"@web3api/ethereum-plugin-js": "0.0.1-prealpha.70",
27+
"@web3api/fs-plugin-js": "0.0.1-prealpha.70",
28+
"@web3api/graph-node-plugin-js": "0.0.1-prealpha.70",
29+
"@web3api/http-plugin-js": "0.0.1-prealpha.70",
30+
"@web3api/ipfs-plugin-js": "0.0.1-prealpha.70",
31+
"@web3api/logger-plugin-js": "0.0.1-prealpha.70",
32+
"@web3api/schema-parse": "0.0.1-prealpha.70",
33+
"@web3api/sha3-plugin-js": "0.0.1-prealpha.70",
34+
"@web3api/tracing-js": "0.0.1-prealpha.70",
35+
"@web3api/uts46-plugin-js": "0.0.1-prealpha.70",
3636
"graphql": "15.5.0",
3737
"js-yaml": "3.14.0",
3838
"uuid": "8.3.2"
@@ -41,10 +41,10 @@
4141
"@types/jest": "26.0.8",
4242
"@types/js-yaml": "3.11.1",
4343
"@types/uuid": "8.3.0",
44-
"@web3api/cli": "0.0.1-prealpha.69",
45-
"@web3api/os-js": "0.0.1-prealpha.69",
46-
"@web3api/test-cases": "0.0.1-prealpha.69",
47-
"@web3api/test-env-js": "0.0.1-prealpha.69",
44+
"@web3api/cli": "0.0.1-prealpha.70",
45+
"@web3api/os-js": "0.0.1-prealpha.70",
46+
"@web3api/test-cases": "0.0.1-prealpha.70",
47+
"@web3api/test-env-js": "0.0.1-prealpha.70",
4848
"jest": "26.6.3",
4949
"rimraf": "3.0.2",
5050
"ts-jest": "26.5.4",

packages/js/core/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@web3api/core-js",
33
"description": "Web3API Javascript Core",
4-
"version": "0.0.1-prealpha.69",
4+
"version": "0.0.1-prealpha.70",
55
"license": "MIT",
66
"repository": {
77
"type": "git",
@@ -21,8 +21,8 @@
2121
},
2222
"dependencies": {
2323
"@msgpack/msgpack": "2.7.2",
24-
"@web3api/manifest-schemas": "0.0.1-prealpha.69",
25-
"@web3api/tracing-js": "0.0.1-prealpha.69",
24+
"@web3api/manifest-schemas": "0.0.1-prealpha.70",
25+
"@web3api/tracing-js": "0.0.1-prealpha.70",
2626
"graphql": "15.5.0",
2727
"graphql-tag": "2.10.4",
2828
"js-yaml": "3.14.0",
@@ -32,7 +32,7 @@
3232
"devDependencies": {
3333
"@types/jest": "26.0.8",
3434
"@types/semver": "7.3.8",
35-
"@web3api/os-js": "0.0.1-prealpha.69",
35+
"@web3api/os-js": "0.0.1-prealpha.70",
3636
"jest": "26.6.3",
3737
"json-schema-to-typescript": "10.1.3",
3838
"mustache": "4.0.1",

packages/js/os/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@web3api/os-js",
33
"description": "Web3API Javascript OS Utilities",
4-
"version": "0.0.1-prealpha.69",
4+
"version": "0.0.1-prealpha.70",
55
"license": "MIT",
66
"repository": {
77
"type": "git",

packages/js/plugins/ens/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@web3api/ens-plugin-js",
33
"description": "Web3API ENS Javascript Plugin",
4-
"version": "0.0.1-prealpha.69",
4+
"version": "0.0.1-prealpha.70",
55
"license": "MIT",
66
"repository": {
77
"type": "git",
@@ -22,7 +22,7 @@
2222
},
2323
"dependencies": {
2424
"@ethersproject/address": "5.0.7",
25-
"@web3api/core-js": "0.0.1-prealpha.69",
25+
"@web3api/core-js": "0.0.1-prealpha.70",
2626
"ethers": "5.0.7"
2727
},
2828
"devDependencies": {

packages/js/plugins/ethereum/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@web3api/ethereum-plugin-js",
33
"description": "Web3API Ethereum Javascript Plugin",
4-
"version": "0.0.1-prealpha.69",
4+
"version": "0.0.1-prealpha.70",
55
"license": "MIT",
66
"repository": {
77
"type": "git",
@@ -23,15 +23,15 @@
2323
"dependencies": {
2424
"@ethersproject/address": "5.0.7",
2525
"@ethersproject/providers": "5.0.7",
26-
"@web3api/core-js": "0.0.1-prealpha.69",
26+
"@web3api/core-js": "0.0.1-prealpha.70",
2727
"ethers": "5.0.7"
2828
},
2929
"devDependencies": {
3030
"@types/jest": "26.0.8",
31-
"@web3api/client-js": "0.0.1-prealpha.69",
32-
"@web3api/ens-plugin-js": "0.0.1-prealpha.69",
33-
"@web3api/ipfs-plugin-js": "0.0.1-prealpha.69",
34-
"@web3api/test-env-js": "0.0.1-prealpha.69",
31+
"@web3api/client-js": "0.0.1-prealpha.70",
32+
"@web3api/ens-plugin-js": "0.0.1-prealpha.70",
33+
"@web3api/ipfs-plugin-js": "0.0.1-prealpha.70",
34+
"@web3api/test-env-js": "0.0.1-prealpha.70",
3535
"eth-ens-namehash": "2.0.8",
3636
"jest": "26.6.3",
3737
"js-sha3": "0.8.0",

packages/js/plugins/ethereum/src/__tests__/integration/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ethereum-js-plugin-integration-test",
33
"description": "Ethereum JS Plugin Integration Test",
44
"private": true,
5-
"version": "0.0.1-prealpha.69",
5+
"version": "0.0.1-prealpha.70",
66
"scripts": {
77
"build": "yarn build:web3api",
88
"build:web3api": "npx w3 build",
@@ -12,9 +12,9 @@
1212
"deploy:web3api": "npx w3 build --ipfs http://localhost:5001 --test-ens simplestorage.eth"
1313
},
1414
"dependencies": {
15-
"@web3api/wasm-as": "0.0.1-prealpha.69"
15+
"@web3api/wasm-as": "0.0.1-prealpha.70"
1616
},
1717
"devDependencies": {
18-
"@web3api/cli": "0.0.1-prealpha.69"
18+
"@web3api/cli": "0.0.1-prealpha.70"
1919
}
2020
}

packages/js/plugins/filesystem/package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@web3api/fs-plugin-js",
33
"description": "Web3API File System Javascript Plugin",
4-
"version": "0.0.1-prealpha.69",
4+
"version": "0.0.1-prealpha.70",
55
"license": "MIT",
66
"repository": {
77
"type": "git",
@@ -21,16 +21,16 @@
2121
"test:watch": "jest --watch --passWithNoTests --verbose"
2222
},
2323
"dependencies": {
24-
"@web3api/core-js": "0.0.1-prealpha.69"
24+
"@web3api/core-js": "0.0.1-prealpha.70"
2525
},
2626
"devDependencies": {
2727
"@types/jest": "26.0.8",
28-
"@web3api/client-js": "0.0.1-prealpha.69",
29-
"@web3api/ens-plugin-js": "0.0.1-prealpha.69",
30-
"@web3api/ethereum-plugin-js": "0.0.1-prealpha.69",
31-
"@web3api/ipfs-plugin-js": "0.0.1-prealpha.69",
32-
"@web3api/test-cases": "0.0.1-prealpha.69",
33-
"@web3api/test-env-js": "0.0.1-prealpha.69",
28+
"@web3api/client-js": "0.0.1-prealpha.70",
29+
"@web3api/ens-plugin-js": "0.0.1-prealpha.70",
30+
"@web3api/ethereum-plugin-js": "0.0.1-prealpha.70",
31+
"@web3api/ipfs-plugin-js": "0.0.1-prealpha.70",
32+
"@web3api/test-cases": "0.0.1-prealpha.70",
33+
"@web3api/test-env-js": "0.0.1-prealpha.70",
3434
"jest": "26.6.3",
3535
"rimraf": "3.0.2",
3636
"ts-jest": "26.5.4",

packages/js/plugins/graph-node/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@web3api/graph-node-plugin-js",
33
"description": "Web3API Graph Node Javascript Plugin",
4-
"version": "0.0.1-prealpha.69",
4+
"version": "0.0.1-prealpha.70",
55
"license": "MIT",
66
"repository": {
77
"type": "git",
@@ -21,16 +21,16 @@
2121
"test:watch": "jest --watch --passWithNoTests --verbose"
2222
},
2323
"dependencies": {
24-
"@web3api/core-js": "0.0.1-prealpha.69",
25-
"@web3api/http-plugin-js": "0.0.1-prealpha.69",
24+
"@web3api/core-js": "0.0.1-prealpha.70",
25+
"@web3api/http-plugin-js": "0.0.1-prealpha.70",
2626
"apollo-link": "1.2.14",
2727
"apollo-link-http": "1.5.17",
2828
"cross-fetch": "3.0.5",
2929
"graphql-tag": "2.10.4"
3030
},
3131
"devDependencies": {
3232
"@types/jest": "26.0.8",
33-
"@web3api/client-js": "0.0.1-prealpha.69",
33+
"@web3api/client-js": "0.0.1-prealpha.70",
3434
"jest": "26.6.3",
3535
"rimraf": "3.0.2",
3636
"ts-jest": "26.5.4",

packages/js/plugins/http/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@web3api/http-plugin-js",
33
"description": "Web3API HTTP Javascript Plugin",
4-
"version": "0.0.1-prealpha.69",
4+
"version": "0.0.1-prealpha.70",
55
"license": "MIT",
66
"repository": {
77
"type": "git",
@@ -21,15 +21,15 @@
2121
"test:watch": "jest --watch --passWithNoTests --verbose"
2222
},
2323
"dependencies": {
24-
"@web3api/core-js": "0.0.1-prealpha.69",
24+
"@web3api/core-js": "0.0.1-prealpha.70",
2525
"axios": "0.21.4"
2626
},
2727
"devDependencies": {
2828
"@types/jest": "26.0.8",
29-
"@web3api/client-js": "0.0.1-prealpha.69",
30-
"@web3api/ens-plugin-js": "0.0.1-prealpha.69",
31-
"@web3api/ipfs-plugin-js": "0.0.1-prealpha.69",
32-
"@web3api/test-env-js": "0.0.1-prealpha.69",
29+
"@web3api/client-js": "0.0.1-prealpha.70",
30+
"@web3api/ens-plugin-js": "0.0.1-prealpha.70",
31+
"@web3api/ipfs-plugin-js": "0.0.1-prealpha.70",
32+
"@web3api/test-env-js": "0.0.1-prealpha.70",
3333
"jest": "26.6.3",
3434
"nock": "13.0.7",
3535
"rimraf": "3.0.2",

packages/js/plugins/http/src/__tests__/e2e/integration/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "http-js-plugin-integration-test",
33
"description": "HTTP JS Plugin Integration Test",
44
"private": true,
5-
"version": "0.0.1-prealpha.69",
5+
"version": "0.0.1-prealpha.70",
66
"scripts": {
77
"build": "yarn build:web3api",
88
"build:web3api": "npx w3 build",
@@ -12,9 +12,9 @@
1212
"deploy:web3api": "npx w3 build --ipfs http://localhost:5001 --test-ens simplestorage.eth"
1313
},
1414
"dependencies": {
15-
"@web3api/wasm-as": "0.0.1-prealpha.69"
15+
"@web3api/wasm-as": "0.0.1-prealpha.70"
1616
},
1717
"devDependencies": {
18-
"@web3api/cli": "0.0.1-prealpha.69"
18+
"@web3api/cli": "0.0.1-prealpha.70"
1919
}
2020
}

0 commit comments

Comments
 (0)