Skip to content

Commit 601cc62

Browse files
authored
1.1 (#1815)
1 parent 201480b commit 601cc62

File tree

11 files changed

+53
-53
lines changed

11 files changed

+53
-53
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 1.1.0-beta.x
1+
# 1.1.1
22

33
- Add support for `balances.account` in all applicable derives (incl. `vesting` module)
44
- Inject and use SignedExtensions by name from V11 metadata (V4 extrinsics only)

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.1.0-beta.22"
12+
"version": "1.1.0"
1313
}

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.1.0-beta.22",
3+
"version": "1.1.0",
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.1.0-beta.22"
30+
"@polkadot/types": "^1.1.0"
3131
}
3232
}

packages/api-derive/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/api-derive",
3-
"version": "1.1.0-beta.22",
3+
"version": "1.1.0",
44
"description": "Common functions used across Polkadot, derived from RPC calls and storage queries.",
55
"main": "index.js",
66
"keywords": [
@@ -28,10 +28,10 @@
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.1.0-beta.22",
32-
"@polkadot/types": "^1.1.0-beta.22"
31+
"@polkadot/api": "^1.1.0",
32+
"@polkadot/types": "^1.1.0"
3333
},
3434
"devDependencies": {
35-
"@polkadot/keyring": "^2.2.0-beta.0"
35+
"@polkadot/keyring": "^2.2.1"
3636
}
3737
}

packages/api/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/api",
3-
"version": "1.1.0-beta.22",
3+
"version": "1.1.0",
44
"description": "Promise and RxJS wrappers around the Polkadot JS RPC",
55
"main": "index.js",
66
"keywords": [
@@ -27,15 +27,15 @@
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/api#readme",
2828
"dependencies": {
2929
"@babel/runtime": "^7.8.3",
30-
"@polkadot/api-derive": "^1.1.0-beta.22",
31-
"@polkadot/keyring": "^2.2.0-beta.0",
32-
"@polkadot/metadata": "^1.1.0-beta.22",
33-
"@polkadot/rpc-core": "^1.1.0-beta.22",
34-
"@polkadot/rpc-provider": "^1.1.0-beta.22",
35-
"@polkadot/types": "^1.1.0-beta.22",
36-
"@polkadot/util-crypto": "^2.2.0-beta.0"
30+
"@polkadot/api-derive": "^1.1.0",
31+
"@polkadot/keyring": "^2.2.1",
32+
"@polkadot/metadata": "^1.1.0",
33+
"@polkadot/rpc-core": "^1.1.0",
34+
"@polkadot/rpc-provider": "^1.1.0",
35+
"@polkadot/types": "^1.1.0",
36+
"@polkadot/util-crypto": "^2.2.1"
3737
},
3838
"devDependencies": {
39-
"@polkadot/keyring": "^2.2.0-beta.0"
39+
"@polkadot/keyring": "^2.2.1"
4040
}
4141
}

packages/metadata/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/metadata",
3-
"version": "1.1.0-beta.22",
3+
"version": "1.1.0",
44
"description": "Helpers to extract information from runtime metadata",
55
"main": "index.js",
66
"publishConfig": {
@@ -27,11 +27,11 @@
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.1.0-beta.22",
31-
"@polkadot/util": "^2.2.0-beta.0",
32-
"@polkadot/util-crypto": "^2.2.0-beta.0"
30+
"@polkadot/types": "^1.1.0",
31+
"@polkadot/util": "^2.2.1",
32+
"@polkadot/util-crypto": "^2.2.1"
3333
},
3434
"devDependencies": {
35-
"@polkadot/keyring": "^2.2.0-beta.0"
35+
"@polkadot/keyring": "^2.2.1"
3636
}
3737
}

packages/rpc-core/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/rpc-core",
3-
"version": "1.1.0-beta.22",
3+
"version": "1.1.0",
44
"description": "A JavaScript wrapper for the Polkadot JsonRPC interface",
55
"main": "index.js",
66
"keywords": [
@@ -27,10 +27,10 @@
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.1.0-beta.22",
31-
"@polkadot/rpc-provider": "^1.1.0-beta.22",
32-
"@polkadot/types": "^1.1.0-beta.22",
33-
"@polkadot/util": "^2.2.0-beta.0",
30+
"@polkadot/jsonrpc": "^1.1.0",
31+
"@polkadot/rpc-provider": "^1.1.0",
32+
"@polkadot/types": "^1.1.0",
33+
"@polkadot/util": "^2.2.1",
3434
"rxjs": "^6.5.4"
3535
}
3636
}

packages/rpc-provider/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/rpc-provider",
3-
"version": "1.1.0-beta.22",
3+
"version": "1.1.0",
44
"description": "Transport providers for the API",
55
"main": "index.js",
66
"keywords": [
@@ -27,15 +27,15 @@
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.1.0-beta.22",
31-
"@polkadot/util": "^2.2.0-beta.0",
32-
"@polkadot/util-crypto": "^2.2.0-beta.0",
30+
"@polkadot/metadata": "^1.1.0",
31+
"@polkadot/util": "^2.2.1",
32+
"@polkadot/util-crypto": "^2.2.1",
3333
"eventemitter3": "^4.0.0",
3434
"isomorphic-fetch": "^2.2.1",
3535
"websocket": "^1.0.31"
3636
},
3737
"devDependencies": {
38-
"@polkadot/keyring": "^2.2.0-beta.0",
38+
"@polkadot/keyring": "^2.2.1",
3939
"mock-socket": "^9.0.3",
4040
"nock": "^11.7.2"
4141
}

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.1.0-beta.22",
3+
"version": "1.1.0",
44
"description": "Method definitions for the Polkadot RPC layer",
55
"main": "index.js",
66
"publishConfig": {

packages/types/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/types",
3-
"version": "1.1.0-beta.22",
3+
"version": "1.1.0",
44
"description": "Implementation of the Parity codec",
55
"main": "index.js",
66
"bin": {
@@ -34,14 +34,14 @@
3434
},
3535
"dependencies": {
3636
"@babel/runtime": "^7.8.3",
37-
"@polkadot/metadata": "^1.1.0-beta.22",
38-
"@polkadot/util": "^2.2.0-beta.0",
39-
"@polkadot/util-crypto": "^2.2.0-beta.0",
37+
"@polkadot/metadata": "^1.1.0",
38+
"@polkadot/util": "^2.2.1",
39+
"@polkadot/util-crypto": "^2.2.1",
4040
"memoizee": "^0.4.14",
4141
"yargs": "^15.1.0"
4242
},
4343
"devDependencies": {
44-
"@polkadot/keyring": "^2.2.0-beta.0",
44+
"@polkadot/keyring": "^2.2.1",
4545
"@types/memoizee": "^0.4.3",
4646
"@types/yargs": "^15.0.2"
4747
}

0 commit comments

Comments
 (0)