diff --git a/CHANGELOG.md b/CHANGELOG.md index 12b220b16656..c66bf080a0bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# 0.90.0-beta.x +# 0.90.1 If you are upgrading form an older version, use the CHANGELOG hand-in-hand with the [migration guide](UPGRADING.md). diff --git a/UPGRADING.md b/UPGRADING.md index 615c7f5eca90..4a6151285a38 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -4,9 +4,9 @@ This is an upgrade guide for users of the API. It does not attempt to detail eac 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. -## 0.90.0-beta.0 (and newer), from 0.81.1 (and older) +## 0.90.1 (and newer), from 0.81.1 (and older) -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/). +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/). 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. diff --git a/lerna.json b/lerna.json index 5ea741a23876..53596c11ef94 100644 --- a/lerna.json +++ b/lerna.json @@ -9,5 +9,5 @@ "packages": [ "packages/*" ], - "version": "0.90.0-beta.71" + "version": "0.90.0" } diff --git a/packages/api-contract/package.json b/packages/api-contract/package.json index f5a1cf6f447f..629b642e7465 100644 --- a/packages/api-contract/package.json +++ b/packages/api-contract/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/api-contract", - "version": "0.90.0-beta.71", + "version": "0.90.0", "description": "Interfaces for interacting with contracts and contract ABIs", "main": "index.js", "keywords": [ @@ -27,6 +27,6 @@ "homepage": "https://github.com/polkadot-js/api/tree/master/packages/api-contract#readme", "dependencies": { "@babel/runtime": "^7.5.5", - "@polkadot/types": "^0.90.0-beta.71" + "@polkadot/types": "^0.90.0" } } diff --git a/packages/api-derive/package.json b/packages/api-derive/package.json index 7c90489d423c..2eec012125b1 100644 --- a/packages/api-derive/package.json +++ b/packages/api-derive/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/api-derive", - "version": "0.90.0-beta.71", + "version": "0.90.0", "description": "Common functions used across Polkadot, derived from RPC calls and storage queries.", "main": "index.js", "keywords": [ @@ -28,8 +28,8 @@ "homepage": "https://github.com/polkadot-js/api/tree/master/packages/api-derive#readme", "dependencies": { "@babel/runtime": "^7.5.5", - "@polkadot/api": "^0.90.0-beta.71", - "@polkadot/types": "^0.90.0-beta.71" + "@polkadot/api": "^0.90.0", + "@polkadot/types": "^0.90.0" }, "devDependencies": { "@polkadot/keyring": "^1.1.1" diff --git a/packages/api-metadata/package.json b/packages/api-metadata/package.json index a3608f17f956..56975d88999c 100644 --- a/packages/api-metadata/package.json +++ b/packages/api-metadata/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/api-metadata", - "version": "0.90.0-beta.71", + "version": "0.90.0", "description": "Helpers to extract information from runtime metadata", "main": "index.js", "publishConfig": { @@ -27,7 +27,7 @@ "homepage": "https://github.com/polkadot-js/api/tree/master/packages/type-metadata#readme", "dependencies": { "@babel/runtime": "^7.5.5", - "@polkadot/types": "^0.90.0-beta.71", + "@polkadot/types": "^0.90.0", "@polkadot/util": "^1.1.1", "@polkadot/util-crypto": "^1.1.1" }, diff --git a/packages/api/package.json b/packages/api/package.json index 1f2106ec06d2..c9b5ed15d235 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/api", - "version": "0.90.0-beta.71", + "version": "0.90.0", "description": "Promise and RxJS wrappers around the Polkadot JS RPC", "main": "index.js", "keywords": [ @@ -27,11 +27,11 @@ "homepage": "https://github.com/polkadot-js/api/tree/master/packages/api#readme", "dependencies": { "@babel/runtime": "^7.5.5", - "@polkadot/api-derive": "^0.90.0-beta.71", - "@polkadot/api-metadata": "^0.90.0-beta.71", - "@polkadot/rpc-core": "^0.90.0-beta.71", - "@polkadot/rpc-provider": "^0.90.0-beta.71", - "@polkadot/types": "^0.90.0-beta.71", + "@polkadot/api-derive": "^0.90.0", + "@polkadot/api-metadata": "^0.90.0", + "@polkadot/rpc-core": "^0.90.0", + "@polkadot/rpc-provider": "^0.90.0", + "@polkadot/types": "^0.90.0", "@polkadot/util-crypto": "^1.1.1" }, "devDependencies": { diff --git a/packages/rpc-core/package.json b/packages/rpc-core/package.json index 7cacddc73c0b..c3bbd1d8150e 100644 --- a/packages/rpc-core/package.json +++ b/packages/rpc-core/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/rpc-core", - "version": "0.90.0-beta.71", + "version": "0.90.0", "description": "A JavaScript wrapper for the Polkadot JsonRPC interface", "main": "index.js", "keywords": [ @@ -27,9 +27,9 @@ "homepage": "https://github.com/polkadot-js/api/tree/master/packages/rpc-core#readme", "dependencies": { "@babel/runtime": "^7.5.5", - "@polkadot/jsonrpc": "^0.90.0-beta.71", - "@polkadot/rpc-provider": "^0.90.0-beta.71", - "@polkadot/types": "^0.90.0-beta.71", + "@polkadot/jsonrpc": "^0.90.0", + "@polkadot/rpc-provider": "^0.90.0", + "@polkadot/types": "^0.90.0", "@polkadot/util": "^1.1.1", "rxjs": "^6.5.2" } diff --git a/packages/rpc-provider/package.json b/packages/rpc-provider/package.json index c321acc429bf..e02c89d1238d 100644 --- a/packages/rpc-provider/package.json +++ b/packages/rpc-provider/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/rpc-provider", - "version": "0.90.0-beta.71", + "version": "0.90.0", "description": "Transport providers for the API", "main": "index.js", "keywords": [ @@ -27,7 +27,7 @@ "homepage": "https://github.com/polkadot-js/api/tree/master/packages/rpc-provider#readme", "dependencies": { "@babel/runtime": "^7.5.5", - "@polkadot/api-metadata": "^0.90.0-beta.71", + "@polkadot/api-metadata": "^0.90.0", "@polkadot/util": "^1.1.1", "@polkadot/util-crypto": "^1.1.1", "@types/nock": "^10.0.3", diff --git a/packages/type-jsonrpc/package.json b/packages/type-jsonrpc/package.json index b9ba77d1626c..457226ce28eb 100644 --- a/packages/type-jsonrpc/package.json +++ b/packages/type-jsonrpc/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/jsonrpc", - "version": "0.90.0-beta.71", + "version": "0.90.0", "description": "Method definitions for the Polkadot RPC layer", "main": "index.js", "publishConfig": { diff --git a/packages/types/package.json b/packages/types/package.json index a8fcde45d5ee..9adbaa783b83 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@polkadot/types", - "version": "0.90.0-beta.71", + "version": "0.90.0", "description": "Implementation of the Parity codec", "main": "index.js", "keywords": [