Skip to content

Commit 6dce57b

Browse files
committed
[CI Skip] 1.0.1
skip-checks: true
1 parent ca7edf1 commit 6dce57b

File tree

10 files changed

+24
-24
lines changed

10 files changed

+24
-24
lines changed

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
"packages": [
1010
"packages/*"
1111
],
12-
"version": "1.0.0"
12+
"version": "1.0.1"
1313
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-beta.44",
2+
"version": "1.0.1",
33
"private": true,
44
"engines": {
55
"yarn": "^1.10.1"

packages/api-contract/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/api-contract",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Interfaces for interacting with contracts and contract ABIs",
55
"main": "index.js",
66
"keywords": [
@@ -27,6 +27,6 @@
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/api-contract#readme",
2828
"dependencies": {
2929
"@babel/runtime": "^7.8.3",
30-
"@polkadot/types": "^1.0.0"
30+
"@polkadot/types": "^1.0.1"
3131
}
3232
}

packages/api-derive/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/api-derive",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Common functions used across Polkadot, derived from RPC calls and storage queries.",
55
"main": "index.js",
66
"keywords": [
@@ -28,8 +28,8 @@
2828
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/api-derive#readme",
2929
"dependencies": {
3030
"@babel/runtime": "^7.8.3",
31-
"@polkadot/api": "^1.0.0",
32-
"@polkadot/types": "^1.0.0"
31+
"@polkadot/api": "^1.0.1",
32+
"@polkadot/types": "^1.0.1"
3333
},
3434
"devDependencies": {
3535
"@polkadot/keyring": "^2.0.1"

packages/api/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/api",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Promise and RxJS wrappers around the Polkadot JS RPC",
55
"main": "index.js",
66
"keywords": [
@@ -30,12 +30,12 @@
3030
},
3131
"dependencies": {
3232
"@babel/runtime": "^7.8.3",
33-
"@polkadot/api-derive": "^1.0.0",
33+
"@polkadot/api-derive": "^1.0.1",
3434
"@polkadot/keyring": "^2.0.1",
35-
"@polkadot/metadata": "^1.0.0",
36-
"@polkadot/rpc-core": "^1.0.0",
37-
"@polkadot/rpc-provider": "^1.0.0",
38-
"@polkadot/types": "^1.0.0",
35+
"@polkadot/metadata": "^1.0.1",
36+
"@polkadot/rpc-core": "^1.0.1",
37+
"@polkadot/rpc-provider": "^1.0.1",
38+
"@polkadot/types": "^1.0.1",
3939
"@polkadot/util-crypto": "^2.0.1"
4040
},
4141
"devDependencies": {

packages/metadata/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/metadata",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Helpers to extract information from runtime metadata",
55
"main": "index.js",
66
"publishConfig": {
@@ -27,7 +27,7 @@
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/type-metadata#readme",
2828
"dependencies": {
2929
"@babel/runtime": "^7.8.3",
30-
"@polkadot/types": "^1.0.0",
30+
"@polkadot/types": "^1.0.1",
3131
"@polkadot/util": "^2.0.1",
3232
"@polkadot/util-crypto": "^2.0.1"
3333
},

packages/rpc-core/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/rpc-core",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A JavaScript wrapper for the Polkadot JsonRPC interface",
55
"main": "index.js",
66
"keywords": [
@@ -27,9 +27,9 @@
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/rpc-core#readme",
2828
"dependencies": {
2929
"@babel/runtime": "^7.8.3",
30-
"@polkadot/jsonrpc": "^1.0.0",
31-
"@polkadot/rpc-provider": "^1.0.0",
32-
"@polkadot/types": "^1.0.0",
30+
"@polkadot/jsonrpc": "^1.0.1",
31+
"@polkadot/rpc-provider": "^1.0.1",
32+
"@polkadot/types": "^1.0.1",
3333
"@polkadot/util": "^2.0.1",
3434
"rxjs": "^6.5.4"
3535
}

packages/rpc-provider/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/rpc-provider",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Transport providers for the API",
55
"main": "index.js",
66
"keywords": [
@@ -27,7 +27,7 @@
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/rpc-provider#readme",
2828
"dependencies": {
2929
"@babel/runtime": "^7.8.3",
30-
"@polkadot/metadata": "^1.0.0",
30+
"@polkadot/metadata": "^1.0.1",
3131
"@polkadot/util": "^2.0.1",
3232
"@polkadot/util-crypto": "^2.0.1",
3333
"eventemitter3": "^4.0.0",

packages/type-jsonrpc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/jsonrpc",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Method definitions for the Polkadot RPC layer",
55
"main": "index.js",
66
"publishConfig": {

packages/types/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/types",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Implementation of the Parity codec",
55
"main": "index.js",
66
"bin": {
@@ -34,7 +34,7 @@
3434
},
3535
"dependencies": {
3636
"@babel/runtime": "^7.8.3",
37-
"@polkadot/metadata": "^1.0.0",
37+
"@polkadot/metadata": "^1.0.1",
3838
"@polkadot/util": "^2.0.1",
3939
"@polkadot/util-crypto": "^2.0.1",
4040
"memoizee": "^0.4.14",

0 commit comments

Comments
 (0)