Skip to content

Commit f9a42e4

Browse files
authored
0.99 (#1669)
* 0.99 * Rewrite yarn.lock
1 parent b80d72e commit f9a42e4

File tree

12 files changed

+218
-175
lines changed

12 files changed

+218
-175
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# 0.99.1
22

33
- **Breaking change** The `Data` and `U8a` type has been renamed and just replaced with the `Raw` type
4-
- **Breaking change** The `api.derive.staking.info` has been split into 2 - `staking.query` for non-balance related information (mor effective) and `staking.account` that enhances query for all the information previously found `.info`
4+
- **Breaking change** The `api.derive.staking.info` has been split into 2 - `staking.query` for non-balance related information (more effective) and `staking.account` that enhances query for all the information previously found `.info`
55
- Cleanup `DoubleMap` hashing to always hash over the full value (in the case of `Vec<T>`, this includes the length)
6+
- Update democracy derives to take care of nextTally and lowestU*nbaked
67
- Add additional derives for both council & treasury
7-
- Alignment with latest Polkadot/Substrate master branches
8+
- Alignment with latest Polkadot/Substrate master branch types
89

910
# 0.98.1
1011

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": "0.99.0-beta.16"
12+
"version": "0.99.0"
1313
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
"devDependencies": {
3232
"@babel/core": "^7.7.5",
3333
"@babel/register": "^7.7.4",
34-
"@babel/runtime": "^7.7.5",
35-
"@polkadot/dev": "^0.32.0-beta.17",
34+
"@babel/runtime": "^7.7.6",
35+
"@polkadot/dev": "^0.32.0-beta.18",
3636
"@polkadot/ts": "^0.1.88"
3737
}
3838
}

packages/api-contract/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-contract",
3-
"version": "0.99.0-beta.16",
3+
"version": "0.99.0",
44
"description": "Interfaces for interacting with contracts and contract ABIs",
55
"main": "index.js",
66
"keywords": [
@@ -26,7 +26,7 @@
2626
},
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/api-contract#readme",
2828
"dependencies": {
29-
"@babel/runtime": "^7.7.5",
30-
"@polkadot/types": "^0.99.0-beta.16"
29+
"@babel/runtime": "^7.7.6",
30+
"@polkadot/types": "^0.99.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": "0.99.0-beta.16",
3+
"version": "0.99.0",
44
"description": "Common functions used across Polkadot, derived from RPC calls and storage queries.",
55
"main": "index.js",
66
"keywords": [
@@ -27,9 +27,9 @@
2727
},
2828
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/api-derive#readme",
2929
"dependencies": {
30-
"@babel/runtime": "^7.7.5",
31-
"@polkadot/api": "^0.99.0-beta.16",
32-
"@polkadot/types": "^0.99.0-beta.16"
30+
"@babel/runtime": "^7.7.6",
31+
"@polkadot/api": "^0.99.0",
32+
"@polkadot/types": "^0.99.0"
3333
},
3434
"devDependencies": {
3535
"@polkadot/keyring": "^1.7.1"

packages/api/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/api",
3-
"version": "0.99.0-beta.16",
3+
"version": "0.99.0",
44
"description": "Promise and RxJS wrappers around the Polkadot JS RPC",
55
"main": "index.js",
66
"keywords": [
@@ -26,13 +26,13 @@
2626
},
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/api#readme",
2828
"dependencies": {
29-
"@babel/runtime": "^7.7.5",
30-
"@polkadot/api-derive": "^0.99.0-beta.16",
29+
"@babel/runtime": "^7.7.6",
30+
"@polkadot/api-derive": "^0.99.0",
3131
"@polkadot/keyring": "^1.7.1",
32-
"@polkadot/metadata": "^0.99.0-beta.16",
33-
"@polkadot/rpc-core": "^0.99.0-beta.16",
34-
"@polkadot/rpc-provider": "^0.99.0-beta.16",
35-
"@polkadot/types": "^0.99.0-beta.16",
32+
"@polkadot/metadata": "^0.99.0",
33+
"@polkadot/rpc-core": "^0.99.0",
34+
"@polkadot/rpc-provider": "^0.99.0",
35+
"@polkadot/types": "^0.99.0",
3636
"@polkadot/util-crypto": "^1.7.1"
3737
},
3838
"devDependencies": {

packages/metadata/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/metadata",
3-
"version": "0.99.0-beta.16",
3+
"version": "0.99.0",
44
"description": "Helpers to extract information from runtime metadata",
55
"main": "index.js",
66
"publishConfig": {
@@ -26,8 +26,8 @@
2626
},
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/type-metadata#readme",
2828
"dependencies": {
29-
"@babel/runtime": "^7.7.5",
30-
"@polkadot/types": "^0.99.0-beta.16",
29+
"@babel/runtime": "^7.7.6",
30+
"@polkadot/types": "^0.99.0",
3131
"@polkadot/util": "^1.7.1",
3232
"@polkadot/util-crypto": "^1.7.1"
3333
},

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": "0.99.0-beta.16",
3+
"version": "0.99.0",
44
"description": "A JavaScript wrapper for the Polkadot JsonRPC interface",
55
"main": "index.js",
66
"keywords": [
@@ -26,10 +26,10 @@
2626
},
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/rpc-core#readme",
2828
"dependencies": {
29-
"@babel/runtime": "^7.7.5",
30-
"@polkadot/jsonrpc": "^0.99.0-beta.16",
31-
"@polkadot/rpc-provider": "^0.99.0-beta.16",
32-
"@polkadot/types": "^0.99.0-beta.16",
29+
"@babel/runtime": "^7.7.6",
30+
"@polkadot/jsonrpc": "^0.99.0",
31+
"@polkadot/rpc-provider": "^0.99.0",
32+
"@polkadot/types": "^0.99.0",
3333
"@polkadot/util": "^1.7.1",
3434
"rxjs": "^6.5.3"
3535
}

packages/rpc-provider/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/rpc-provider",
3-
"version": "0.99.0-beta.16",
3+
"version": "0.99.0",
44
"description": "Transport providers for the API",
55
"main": "index.js",
66
"keywords": [
@@ -26,8 +26,8 @@
2626
},
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/rpc-provider#readme",
2828
"dependencies": {
29-
"@babel/runtime": "^7.7.5",
30-
"@polkadot/metadata": "^0.99.0-beta.16",
29+
"@babel/runtime": "^7.7.6",
30+
"@polkadot/metadata": "^0.99.0",
3131
"@polkadot/util": "^1.7.1",
3232
"@polkadot/util-crypto": "^1.7.1",
3333
"eventemitter3": "^4.0.0",

packages/type-jsonrpc/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/jsonrpc",
3-
"version": "0.99.0-beta.16",
3+
"version": "0.99.0",
44
"description": "Method definitions for the Polkadot RPC layer",
55
"main": "index.js",
66
"publishConfig": {
@@ -26,6 +26,6 @@
2626
},
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/type-jsonrpc#readme",
2828
"dependencies": {
29-
"@babel/runtime": "^7.7.5"
29+
"@babel/runtime": "^7.7.6"
3030
}
3131
}

0 commit comments

Comments
 (0)