Skip to content

Commit

Permalink
jg-0.9 (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacogr authored Jan 30, 2020
1 parent aa199b1 commit 767bbb4
Show file tree
Hide file tree
Showing 8 changed files with 108 additions and 136 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# 0.9.1

- Allow for offline sending (Thanks to https://github.com/mzolkiewski)
- Fix readline imports (Thanks to https://github.com/joepetrowski)
- @polkadot/api 1.0
- Add simple RPC query server

# 0.8.1

- Add option to specific longevity on cli-signer (Thanks to @bison-brandon)
- Allow cli-api to submit objects for complex transactions (Thanks to @benfen)
- Add option to specific longevity on cli-signer (Thanks to https://github.com/bison-brandon)
- Allow cli-api to submit objects for complex transactions (Thanks to https://github.com/benfen)
- @polkadot/api 0.97.1
- Support for Kusama CC3
- Publish docker images directly from CI
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.9.0-beta.12"
"version": "0.9.0"
}
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"packages/*"
],
"resolutions": {
"@polkadot/api": "^1.0.0-beta.37",
"@polkadot/keyring": "^2.0.0-beta.10",
"@polkadot/util": "^2.0.0-beta.10",
"@polkadot/util-crypto": "^2.0.0-beta.10",
"@polkadot/api": "^1.0.1",
"@polkadot/keyring": "^2.0.1",
"@polkadot/util": "^2.0.1",
"@polkadot/util-crypto": "^2.0.1",
"babel-core": "^7.0.0-bridge.0",
"typescript": "^3.7.5"
},
Expand All @@ -30,7 +30,7 @@
"@babel/core": "^7.8.3",
"@babel/register": "^7.8.3",
"@babel/runtime": "^7.8.3",
"@polkadot/dev": "^0.33.1",
"@polkadot/dev": "^0.33.3",
"@polkadot/ts": "^0.2.1"
}
}
6 changes: 3 additions & 3 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.9.0-beta.12",
"version": "0.9.0",
"description": "A commandline API interface for interacting with a chain",
"main": "index.js",
"bin": {
Expand Down Expand Up @@ -31,8 +31,8 @@
"dependencies": {
"@babel/core": "^7.8.3",
"@babel/runtime": "^7.8.3",
"@polkadot/api": "^1.0.0-beta.37",
"@polkadot/keyring": "^2.0.0-beta.10",
"@polkadot/api": "^1.0.1",
"@polkadot/keyring": "^2.0.1",
"yargs": "^15.1.0"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 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.9.0-beta.12",
"version": "0.9.0",
"description": "A JSON API endpoint server",
"main": "index.js",
"bin": {
Expand Down Expand Up @@ -31,7 +31,7 @@
"dependencies": {
"@babel/core": "^7.8.3",
"@babel/runtime": "^7.8.3",
"@polkadot/api": "^1.0.0-beta.37",
"@polkadot/api": "^1.0.1",
"koa": "^2.11.0",
"koa-route": "^3.2.0",
"yargs": "^15.1.0"
Expand Down
4 changes: 2 additions & 2 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.9.0-beta.12",
"version": "0.9.0",
"description": "A simple monitor via RPC",
"main": "index.js",
"bin": {
Expand Down Expand Up @@ -31,7 +31,7 @@
"dependencies": {
"@babel/core": "^7.8.3",
"@babel/runtime": "^7.8.3",
"@polkadot/api": "^1.0.0-beta.37",
"@polkadot/api": "^1.0.1",
"koa": "^2.11.0",
"koa-route": "^3.2.0",
"yargs": "^15.1.0"
Expand Down
6 changes: 3 additions & 3 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.9.0-beta.12",
"version": "0.9.0",
"description": "A commandline signer for offline signature generataion",
"main": "index.js",
"bin": {
Expand Down Expand Up @@ -31,8 +31,8 @@
"dependencies": {
"@babel/core": "^7.8.3",
"@babel/runtime": "^7.8.3",
"@polkadot/api": "^1.0.0-beta.37",
"@polkadot/keyring": "^2.0.0-beta.10",
"@polkadot/api": "^1.0.1",
"@polkadot/keyring": "^2.0.1",
"yargs": "^15.1.0"
},
"devDependencies": {
Expand Down
Loading

0 comments on commit 767bbb4

Please sign in to comment.