Skip to content

Commit

Permalink
0.17 (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacogr authored Jul 21, 2020
1 parent 23d846b commit 1f6b4ce
Show file tree
Hide file tree
Showing 9 changed files with 142 additions and 137 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# CHANGELOG

## 0.16.2 Jul 3, 202
## 0.17.1 Jul 21, 2020

- `@polkadot/api` 1.25.1
- `@polkadot/util` 2.18.1

## 0.16.2 Jul 3, 2020

- Remove `strict()` from yargs, allowing "unknown" commands to follow

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.17.0-beta.2"
"version": "0.17.0"
}
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"packages/*"
],
"resolutions": {
"@polkadot/api": "^1.25.0-beta.8",
"@polkadot/api-derive": "^1.25.0-beta.8",
"@polkadot/api": "^1.25.1",
"@polkadot/api-derive": "^1.25.1",
"@polkadot/keyring": "^2.18.1",
"@polkadot/types": "^1.25.0-beta.8",
"@polkadot/types": "^1.25.1",
"@polkadot/util": "^2.18.1",
"@polkadot/util-crypto": "^2.18.1",
"babel-core": "^7.0.0-bridge.0"
Expand All @@ -32,10 +32,10 @@
"@babel/core": "^7.10.5",
"@babel/register": "^7.10.5",
"@babel/runtime": "^7.10.5",
"@polkadot/dev": "^0.55.23",
"@polkadot/dev": "^0.55.27",
"@polkadot/ts": "^0.3.29",
"@types/node": "^14.0.23",
"@types/node": "^14.0.24",
"@types/yargs": "^15.0.5"
},
"version": "0.17.0-beta.2"
"version": "0.17.0"
}
8 changes: 4 additions & 4 deletions packages/api-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkadot/api-cli",
"version": "0.17.0-beta.2",
"version": "0.17.0",
"description": "A commandline API interface for interacting with a chain",
"main": "index.js",
"bin": {
Expand Down Expand Up @@ -31,14 +31,14 @@
"dependencies": {
"@babel/core": "^7.10.5",
"@babel/runtime": "^7.10.5",
"@polkadot/api": "^1.25.0-beta.8",
"@polkadot/api": "^1.25.1",
"@polkadot/keyring": "^2.18.1",
"@polkadot/types": "^1.25.0-beta.8",
"@polkadot/types": "^1.25.1",
"@polkadot/util": "^2.18.1",
"yargs": "^15.4.1"
},
"devDependencies": {
"@types/node": "^14.0.23",
"@types/node": "^14.0.24",
"@types/yargs": "^15.0.5"
}
}
10 changes: 5 additions & 5 deletions packages/json-serve/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkadot/json-serve",
"version": "0.17.0-beta.2",
"version": "0.17.0",
"description": "A JSON API endpoint server",
"main": "index.js",
"bin": {
Expand Down Expand Up @@ -31,9 +31,9 @@
"dependencies": {
"@babel/core": "^7.10.5",
"@babel/runtime": "^7.10.5",
"@polkadot/api": "^1.25.0-beta.8",
"@polkadot/api-derive": "^1.25.0-beta.8",
"@polkadot/types": "^1.25.0-beta.8",
"@polkadot/api": "^1.25.1",
"@polkadot/api-derive": "^1.25.1",
"@polkadot/types": "^1.25.1",
"koa": "^2.13.0",
"koa-route": "^3.2.0",
"yargs": "^15.4.1"
Expand All @@ -42,7 +42,7 @@
"@types/bn.js": "^4.11.6",
"@types/koa": "^2.11.3",
"@types/koa-route": "^3.2.4",
"@types/node": "^14.0.23",
"@types/node": "^14.0.24",
"@types/yargs": "^15.0.5"
}
}
8 changes: 4 additions & 4 deletions packages/monitor-rpc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkadot/monitor-rpc",
"version": "0.17.0-beta.2",
"version": "0.17.0",
"description": "A simple monitor via RPC",
"main": "index.js",
"bin": {
Expand Down Expand Up @@ -31,16 +31,16 @@
"dependencies": {
"@babel/core": "^7.10.5",
"@babel/runtime": "^7.10.5",
"@polkadot/api": "^1.25.0-beta.8",
"@polkadot/types": "^1.25.0-beta.8",
"@polkadot/api": "^1.25.1",
"@polkadot/types": "^1.25.1",
"koa": "^2.13.0",
"koa-route": "^3.2.0",
"yargs": "^15.4.1"
},
"devDependencies": {
"@types/koa": "^2.11.3",
"@types/koa-route": "^3.2.4",
"@types/node": "^14.0.23",
"@types/node": "^14.0.24",
"@types/yargs": "^15.0.5"
}
}
10 changes: 5 additions & 5 deletions packages/signer-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkadot/signer-cli",
"version": "0.17.0-beta.2",
"version": "0.17.0",
"description": "A commandline signer for offline signature generataion",
"main": "index.js",
"bin": {
Expand Down Expand Up @@ -31,16 +31,16 @@
"dependencies": {
"@babel/core": "^7.10.5",
"@babel/runtime": "^7.10.5",
"@polkadot/api": "^1.25.0-beta.8",
"@polkadot/api-cli": "0.17.0-beta.2",
"@polkadot/api": "^1.25.1",
"@polkadot/api-cli": "0.17.0",
"@polkadot/keyring": "^2.18.1",
"@polkadot/types": "^1.25.0-beta.8",
"@polkadot/types": "^1.25.1",
"@polkadot/util": "^2.18.1",
"@polkadot/util-crypto": "^2.18.1",
"yargs": "^15.4.1"
},
"devDependencies": {
"@types/node": "^14.0.23",
"@types/node": "^14.0.24",
"@types/yargs": "^15.0.5"
}
}
4 changes: 2 additions & 2 deletions packages/vanitygen/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkadot/vanitygen",
"version": "0.17.0-beta.2",
"version": "0.17.0",
"description": "A vanity generator",
"main": "index.js",
"bin": {
Expand Down Expand Up @@ -33,7 +33,7 @@
"yargs": "^15.4.1"
},
"devDependencies": {
"@types/node": "^14.0.23",
"@types/node": "^14.0.24",
"@types/yargs": "^15.0.5"
}
}
Loading

0 comments on commit 1f6b4ce

Please sign in to comment.