Skip to content

Commit

Permalink
0.54.3 (#491)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacogr authored May 7, 2023
1 parent ceac9b2 commit 537ba90
Show file tree
Hide file tree
Showing 9 changed files with 409 additions and 421 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CHANGELOG

## 0.54.3 May 7, 2023

Changes:

- Upgrade to `@polkadot/util` 12.2.1
- Upgrade to `@polkadot/api` 10.6.1


## 0.54.2 Apr 30, 2023

Changes:
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"sideEffects": false,
"type": "module",
"version": "0.54.2",
"version": "0.54.3",
"versions": {
"git": "0.54.2",
"npm": "0.54.2"
Expand All @@ -39,17 +39,17 @@
"test": "yarn run:api --help && yarn run:json --help && yarn run:metadata --help && yarn run:monitor --help && yarn run:signer --help && yarn run:vanity --help"
},
"devDependencies": {
"@polkadot/dev": "^0.73.6",
"@types/node": "^18.16.3",
"@polkadot/dev": "^0.73.11",
"@types/node": "^20.1.0",
"@types/yargs": "^17.0.24"
},
"resolutions": {
"@polkadot/api": "^10.5.1",
"@polkadot/api-derive": "^10.5.1",
"@polkadot/keyring": "^12.1.1",
"@polkadot/types": "^10.5.1",
"@polkadot/util": "^12.1.1",
"@polkadot/util-crypto": "^12.1.1",
"@polkadot/api": "^10.6.1",
"@polkadot/api-derive": "^10.6.1",
"@polkadot/keyring": "^12.1.2",
"@polkadot/types": "^10.6.1",
"@polkadot/util": "^12.1.2",
"@polkadot/util-crypto": "^12.1.2",
"typescript": "^5.0.4"
}
}
14 changes: 7 additions & 7 deletions packages/api-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,22 @@
},
"sideEffects": false,
"type": "module",
"version": "0.54.2",
"version": "0.54.3",
"main": "index.js",
"bin": {
"polkadot-js-api": "./runcli.mjs"
},
"dependencies": {
"@polkadot/api": "^10.5.1",
"@polkadot/keyring": "^12.1.1",
"@polkadot/types": "^10.5.1",
"@polkadot/util": "^12.1.1",
"@polkadot/util-crypto": "^12.1.1",
"@polkadot/api": "^10.6.1",
"@polkadot/keyring": "^12.1.2",
"@polkadot/types": "^10.6.1",
"@polkadot/util": "^12.1.2",
"@polkadot/util-crypto": "^12.1.2",
"tslib": "^2.5.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^18.16.3",
"@types/node": "^20.1.0",
"@types/yargs": "^17.0.24"
}
}
14 changes: 7 additions & 7 deletions packages/json-serve/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@
},
"sideEffects": false,
"type": "module",
"version": "0.54.2",
"version": "0.54.3",
"main": "index.js",
"bin": {
"polkadot-js-json-serve": "./runcli.mjs"
},
"dependencies": {
"@polkadot/api": "^10.5.1",
"@polkadot/api-augment": "^10.5.1",
"@polkadot/api-derive": "^10.5.1",
"@polkadot/types": "^10.5.1",
"@polkadot/util": "^12.1.1",
"@polkadot/api": "^10.6.1",
"@polkadot/api-augment": "^10.6.1",
"@polkadot/api-derive": "^10.6.1",
"@polkadot/types": "^10.6.1",
"@polkadot/util": "^12.1.2",
"koa": "^2.14.2",
"koa-route": "^3.2.0",
"tslib": "^2.5.0",
Expand All @@ -34,7 +34,7 @@
"devDependencies": {
"@types/koa": "^2.13.6",
"@types/koa-route": "^3.2.5",
"@types/node": "^18.16.3",
"@types/node": "^20.1.0",
"@types/yargs": "^17.0.24"
}
}
12 changes: 6 additions & 6 deletions packages/metadata-cmp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,21 @@
},
"sideEffects": false,
"type": "module",
"version": "0.54.2",
"version": "0.54.3",
"main": "index.js",
"bin": {
"polkadot-js-metadata-cmp": "./runcli.mjs"
},
"dependencies": {
"@polkadot/api": "^10.5.1",
"@polkadot/keyring": "^12.1.1",
"@polkadot/types": "^10.5.1",
"@polkadot/util": "^12.1.1",
"@polkadot/api": "^10.6.1",
"@polkadot/keyring": "^12.1.2",
"@polkadot/types": "^10.6.1",
"@polkadot/util": "^12.1.2",
"tslib": "^2.5.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^18.16.3",
"@types/node": "^20.1.0",
"@types/yargs": "^17.0.24"
}
}
10 changes: 5 additions & 5 deletions packages/monitor-rpc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
},
"sideEffects": false,
"type": "module",
"version": "0.54.2",
"version": "0.54.3",
"main": "index.js",
"bin": {
"polkadot-js-monitor": "./runcli.mjs"
},
"dependencies": {
"@polkadot/api": "^10.5.1",
"@polkadot/types": "^10.5.1",
"@polkadot/util": "^12.1.1",
"@polkadot/api": "^10.6.1",
"@polkadot/types": "^10.6.1",
"@polkadot/util": "^12.1.2",
"koa": "^2.14.2",
"koa-route": "^3.2.0",
"tslib": "^2.5.0",
Expand All @@ -32,7 +32,7 @@
"devDependencies": {
"@types/koa": "^2.13.6",
"@types/koa-route": "^3.2.5",
"@types/node": "^18.16.3",
"@types/node": "^20.1.0",
"@types/yargs": "^17.0.24"
}
}
16 changes: 8 additions & 8 deletions packages/signer-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,23 @@
},
"sideEffects": false,
"type": "module",
"version": "0.54.2",
"version": "0.54.3",
"main": "index.js",
"bin": {
"polkadot-js-signer": "./runcli.mjs"
},
"dependencies": {
"@polkadot/api": "^10.5.1",
"@polkadot/api-cli": "^0.54.2",
"@polkadot/keyring": "^12.1.1",
"@polkadot/types": "^10.5.1",
"@polkadot/util": "^12.1.1",
"@polkadot/util-crypto": "^12.1.1",
"@polkadot/api": "^10.6.1",
"@polkadot/api-cli": "^0.54.3",
"@polkadot/keyring": "^12.1.2",
"@polkadot/types": "^10.6.1",
"@polkadot/util": "^12.1.2",
"@polkadot/util-crypto": "^12.1.2",
"tslib": "^2.5.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^18.16.3",
"@types/node": "^20.1.0",
"@types/yargs": "^17.0.24"
}
}
8 changes: 4 additions & 4 deletions packages/vanitygen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@
},
"sideEffects": false,
"type": "module",
"version": "0.54.2",
"version": "0.54.3",
"main": "index.js",
"bin": {
"polkadot-js-vanitygen": "./runcli.mjs"
},
"dependencies": {
"@polkadot/util": "^12.1.1",
"@polkadot/util-crypto": "^12.1.1",
"@polkadot/util": "^12.1.2",
"@polkadot/util-crypto": "^12.1.2",
"tslib": "^2.5.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^18.16.3",
"@types/node": "^20.1.0",
"@types/yargs": "^17.0.24"
}
}
Loading

0 comments on commit 537ba90

Please sign in to comment.