Skip to content

Commit

Permalink
0.90 (#1339)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacogr authored Aug 24, 2019
1 parent dc9b20e commit dc1104b
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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).

Expand Down
4 changes: 2 additions & 2 deletions UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
"packages": [
"packages/*"
],
"version": "0.90.0-beta.71"
"version": "0.90.0"
}
4 changes: 2 additions & 2 deletions packages/api-contract/package.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand All @@ -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"
}
}
6 changes: 3 additions & 3 deletions packages/api-derive/package.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand Down Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions packages/api-metadata/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand All @@ -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"
},
Expand Down
12 changes: 6 additions & 6 deletions packages/api/package.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand All @@ -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": {
Expand Down
8 changes: 4 additions & 4 deletions packages/rpc-core/package.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand All @@ -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"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/rpc-provider/package.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/type-jsonrpc/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand Down

0 comments on commit dc1104b

Please sign in to comment.