Skip to content

Commit dc1104b

Browse files
authored
0.90 (#1339)
1 parent dc9b20e commit dc1104b

File tree

11 files changed

+25
-25
lines changed

11 files changed

+25
-25
lines changed

CHANGELOG.md

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

33
If you are upgrading form an older version, use the CHANGELOG hand-in-hand with the [migration guide](UPGRADING.md).
44

UPGRADING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ This is an upgrade guide for users of the API. It does not attempt to detail eac
44

55
While we try to keep the user-facing interfaces as stable as possible, sometimes you just need to make additions to move forward and improve things down the road, as painful as they may be. Like you, we are also users of the API, and eat our own dogfood - and as such, feel any pains introduced first.
66

7-
## 0.90.0-beta.0 (and newer), from 0.81.1 (and older)
7+
## 0.90.1 (and newer), from 0.81.1 (and older)
88

9-
The 0.90.0-beta.0 release caters for the [Kusama network](https://kusama.network/) and pulls in all the changes to support [Substrate 2.x](https://github.com/paritytech/substrate), all while maintaining backwards compatibility to allow operation on networks such as [Polkadot's Alexander](https://polkadot.network/).
9+
The 0.90.1 release caters for the [Kusama network](https://kusama.network/) and pulls in all the changes to support [Substrate 2.x](https://github.com/paritytech/substrate), all while maintaining backwards compatibility to allow operation on networks such as [Polkadot's Alexander](https://polkadot.network/).
1010

1111
To support the network and the new transaction formats, a number of changes were made to how extrinsics are handled and signed. In addition, as support for ongoing work where type definitions are to be supplied by the actual node metadata, the foundation has been laid to move to type definitions as opposed to classes for runtime types.
1212

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.90.0-beta.71"
12+
"version": "0.90.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": "0.90.0-beta.71",
3+
"version": "0.90.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.5.5",
30-
"@polkadot/types": "^0.90.0-beta.71"
30+
"@polkadot/types": "^0.90.0"
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": "0.90.0-beta.71",
3+
"version": "0.90.0",
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.5.5",
31-
"@polkadot/api": "^0.90.0-beta.71",
32-
"@polkadot/types": "^0.90.0-beta.71"
31+
"@polkadot/api": "^0.90.0",
32+
"@polkadot/types": "^0.90.0"
3333
},
3434
"devDependencies": {
3535
"@polkadot/keyring": "^1.1.1"

packages/api-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/api-metadata",
3-
"version": "0.90.0-beta.71",
3+
"version": "0.90.0",
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.5.5",
30-
"@polkadot/types": "^0.90.0-beta.71",
30+
"@polkadot/types": "^0.90.0",
3131
"@polkadot/util": "^1.1.1",
3232
"@polkadot/util-crypto": "^1.1.1"
3333
},

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": "0.90.0-beta.71",
3+
"version": "0.90.0",
44
"description": "Promise and RxJS wrappers around the Polkadot JS RPC",
55
"main": "index.js",
66
"keywords": [
@@ -27,11 +27,11 @@
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/api#readme",
2828
"dependencies": {
2929
"@babel/runtime": "^7.5.5",
30-
"@polkadot/api-derive": "^0.90.0-beta.71",
31-
"@polkadot/api-metadata": "^0.90.0-beta.71",
32-
"@polkadot/rpc-core": "^0.90.0-beta.71",
33-
"@polkadot/rpc-provider": "^0.90.0-beta.71",
34-
"@polkadot/types": "^0.90.0-beta.71",
30+
"@polkadot/api-derive": "^0.90.0",
31+
"@polkadot/api-metadata": "^0.90.0",
32+
"@polkadot/rpc-core": "^0.90.0",
33+
"@polkadot/rpc-provider": "^0.90.0",
34+
"@polkadot/types": "^0.90.0",
3535
"@polkadot/util-crypto": "^1.1.1"
3636
},
3737
"devDependencies": {

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": "0.90.0-beta.71",
3+
"version": "0.90.0",
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.5.5",
30-
"@polkadot/jsonrpc": "^0.90.0-beta.71",
31-
"@polkadot/rpc-provider": "^0.90.0-beta.71",
32-
"@polkadot/types": "^0.90.0-beta.71",
30+
"@polkadot/jsonrpc": "^0.90.0",
31+
"@polkadot/rpc-provider": "^0.90.0",
32+
"@polkadot/types": "^0.90.0",
3333
"@polkadot/util": "^1.1.1",
3434
"rxjs": "^6.5.2"
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": "0.90.0-beta.71",
3+
"version": "0.90.0",
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.5.5",
30-
"@polkadot/api-metadata": "^0.90.0-beta.71",
30+
"@polkadot/api-metadata": "^0.90.0",
3131
"@polkadot/util": "^1.1.1",
3232
"@polkadot/util-crypto": "^1.1.1",
3333
"@types/nock": "^10.0.3",

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

0 commit comments

Comments
 (0)