Skip to content

Commit 658dda6

Browse files
authored
1.25 (#2440)
* 1.25 * Bump metadata
1 parent 87f18ef commit 658dda6

File tree

15 files changed

+484
-204
lines changed

15 files changed

+484
-204
lines changed

CHANGELOG.md

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

3-
## 1.25.0-beta.x
3+
## 1.25.1 Jul 20, 2020
44

55
- **Important** Contract RPC result updated on Substrate, on older chains supply `ContractExecResult: 'ContractExecResultTo255'`
66
- Support for custom HTTP headers in providers (Thanks to https://github.com/brad-larson)
77
- Update known types for Centrifuge (Thanks to https://github.com/philipstanislaus)
8+
- Update API users with Registrar #1 (Thanks to https://github.com/chevdor)
89
- Raw/Bytes `toHuman()` displays utf-8 as available
910
- Add fallback for `setImmediate` when not polyfilled
10-
- Update `NetworkState` reputation for `system_networkState` RPC
11+
- Update `NetworkState` reputation type for `system_networkState` RPC
1112
- Update session progress calcs for Aura (cater for negative)
1213
- Fix class prototype for (basically-deprecated) Linkage type
1314
- Add Polkadot types for `purchase` pallet

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@
2727
"@babel/core": "^7.10.5",
2828
"@babel/register": "^7.10.5",
2929
"@babel/runtime": "^7.10.5",
30-
"@polkadot/dev": "^0.55.26",
30+
"@polkadot/dev": "^0.55.27",
3131
"@polkadot/ts": "^0.3.29",
3232
"@polkadot/typegen": "workspace:packages/typegen",
33-
"@types/jest": "^26.0.4",
33+
"@types/jest": "^26.0.5",
3434
"@vuepress/plugin-search": "^1.5.2",
3535
"copyfiles": "^2.3.0"
3636
},
37-
"version": "1.25.0-beta.12"
37+
"version": "1.25.0"
3838
}

packages/api-contract/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-contract",
3-
"version": "1.25.0-beta.12",
3+
"version": "1.25.0",
44
"description": "Interfaces for interacting with contracts and contract ABIs",
55
"main": "index.js",
66
"keywords": [
@@ -27,9 +27,9 @@
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/api-contract#readme",
2828
"dependencies": {
2929
"@babel/runtime": "^7.10.5",
30-
"@polkadot/api": "1.25.0-beta.12",
31-
"@polkadot/rpc-core": "1.25.0-beta.12",
32-
"@polkadot/types": "1.25.0-beta.12",
30+
"@polkadot/api": "1.25.0",
31+
"@polkadot/rpc-core": "1.25.0",
32+
"@polkadot/types": "1.25.0",
3333
"@polkadot/util": "^2.18.1",
3434
"bn.js": "^5.1.2",
3535
"rxjs": "^6.6.0"

packages/api-derive/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/api-derive",
3-
"version": "1.25.0-beta.12",
3+
"version": "1.25.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.10.5",
31-
"@polkadot/api": "1.25.0-beta.12",
32-
"@polkadot/rpc-core": "1.25.0-beta.12",
33-
"@polkadot/rpc-provider": "1.25.0-beta.12",
34-
"@polkadot/types": "1.25.0-beta.12",
31+
"@polkadot/api": "1.25.0",
32+
"@polkadot/rpc-core": "1.25.0",
33+
"@polkadot/rpc-provider": "1.25.0",
34+
"@polkadot/types": "1.25.0",
3535
"@polkadot/util": "^2.18.1",
3636
"@polkadot/util-crypto": "^2.18.1",
3737
"bn.js": "^5.1.2",

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": "1.25.0-beta.12",
3+
"version": "1.25.0",
44
"description": "Promise and RxJS wrappers around the Polkadot JS RPC",
55
"main": "index.js",
66
"keywords": [
@@ -27,13 +27,13 @@
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/api#readme",
2828
"dependencies": {
2929
"@babel/runtime": "^7.10.5",
30-
"@polkadot/api-derive": "1.25.0-beta.12",
30+
"@polkadot/api-derive": "1.25.0",
3131
"@polkadot/keyring": "^2.18.1",
32-
"@polkadot/metadata": "1.25.0-beta.12",
33-
"@polkadot/rpc-core": "1.25.0-beta.12",
34-
"@polkadot/rpc-provider": "1.25.0-beta.12",
35-
"@polkadot/types": "1.25.0-beta.12",
36-
"@polkadot/types-known": "1.25.0-beta.12",
32+
"@polkadot/metadata": "1.25.0",
33+
"@polkadot/rpc-core": "1.25.0",
34+
"@polkadot/rpc-provider": "1.25.0",
35+
"@polkadot/types": "1.25.0",
36+
"@polkadot/types-known": "1.25.0",
3737
"@polkadot/util": "^2.18.1",
3838
"@polkadot/util-crypto": "^2.18.1",
3939
"bn.js": "^5.1.2",

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": "1.25.0-beta.12",
3+
"version": "1.25.0",
44
"description": "Helpers to extract information from runtime metadata",
55
"main": "index.js",
66
"publishConfig": {
@@ -27,8 +27,8 @@
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/type-metadata#readme",
2828
"dependencies": {
2929
"@babel/runtime": "^7.10.5",
30-
"@polkadot/types": "1.25.0-beta.12",
31-
"@polkadot/types-known": "1.25.0-beta.12",
30+
"@polkadot/types": "1.25.0",
31+
"@polkadot/types-known": "1.25.0",
3232
"@polkadot/util": "^2.18.1",
3333
"@polkadot/util-crypto": "^2.18.1",
3434
"bn.js": "^5.1.2"

0 commit comments

Comments
 (0)