Skip to content

Commit

Permalink
0.25 (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacogr authored May 14, 2020
1 parent d72907d commit 3f3628c
Show file tree
Hide file tree
Showing 11 changed files with 121 additions and 117 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# 0.25.0-beta.x
# 0.25.1 May 14, 2020

- New account creation with default derivation (Thanks to https://github.com/EthWorks)
- Adjust `web3Enable` promise to only resolve after the document has been loaded (is interactive)
- Update `signedExtensions` to cater for new chains
- Update metadata for latest Kusama

# 0.24.1 Apr 19, 2020

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.25.0-beta.7"
"version": "0.25.0"
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
"packages/*"
],
"resolutions": {
"@polkadot/api": "^1.14.0-beta.20",
"@polkadot/api": "^1.14.1",
"@polkadot/keyring": "^2.10.1",
"@polkadot/types": "^1.14.0-beta.20",
"@polkadot/types": "^1.14.1",
"@polkadot/util": "^2.10.1",
"@polkadot/util-crypto": "^2.10.1",
"babel-core": "^7.0.0-bridge.0",
Expand All @@ -30,7 +30,7 @@
"devDependencies": {
"@babel/core": "^7.9.6",
"@polkadot/dev": "^0.52.19",
"@polkadot/typegen": "^1.14.0-beta.20",
"@polkadot/typegen": "^1.14.1",
"@types/jest": "^25.2.1",
"copy-webpack-plugin": "^5.1.1",
"sinon-chrome": "^3.0.1",
Expand Down
8 changes: 4 additions & 4 deletions packages/extension-base/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@polkadot/extension-base",
"description": "Functions, classes and other utilities used in @polkadot/extension",
"version": "0.25.0-beta.7",
"version": "0.25.0",
"author": "Jaco Greeff <[email protected]>",
"license": "Apache-2",
"dependencies": {
"@babel/runtime": "^7.9.6",
"@polkadot/api": "^1.14.0-beta.20",
"@polkadot/extension-inject": "0.25.0-beta.7",
"@polkadot/api": "^1.14.1",
"@polkadot/extension-inject": "0.25.0",
"@polkadot/keyring": "^2.10.1",
"@polkadot/ui-keyring": "^0.53.0-beta.5"
"@polkadot/ui-keyring": "^0.53.1"
}
}
2 changes: 1 addition & 1 deletion packages/extension-chains/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@polkadot/extension-chains",
"description": "Definitions for all known chains as exposed by the extension.",
"version": "0.25.0-beta.7",
"version": "0.25.0",
"author": "Jaco Greeff <[email protected]>",
"license": "Apache-2",
"dependencies": {
Expand Down
7 changes: 4 additions & 3 deletions packages/extension-chains/src/kusama.ts

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/extension-dapp/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@polkadot/extension-dapp",
"description": "Provides an interfaces around the injected globals for ease of access by dapp developers.",
"version": "0.25.0-beta.7",
"version": "0.25.0",
"author": "Jaco Greeff <[email protected]>",
"license": "Apache-2",
"dependencies": {
"@babel/runtime": "^7.9.6",
"@polkadot/extension-inject": "0.25.0-beta.7"
"@polkadot/extension-inject": "0.25.0"
},
"peerDependencies": {
"@polkadot/api": "*"
Expand Down
2 changes: 1 addition & 1 deletion packages/extension-inject/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@polkadot/extension-inject",
"description": "A generic injector (usable to any extension), that populates the base exposed interfaces to be used by dapps.",
"version": "0.25.0-beta.7",
"version": "0.25.0",
"author": "Jaco Greeff <[email protected]>",
"license": "Apache-2",
"dependencies": {
Expand Down
10 changes: 5 additions & 5 deletions packages/extension-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "@polkadot/extension-ui",
"description": "A sample signer extension for the @polkadot/api",
"version": "0.25.0-beta.7",
"version": "0.25.0",
"author": "Jaco Greeff <[email protected]>",
"license": "Apache-2",
"dependencies": {
"@babel/runtime": "^7.9.6",
"@polkadot/extension-base": "0.25.0-beta.7",
"@polkadot/extension-inject": "0.25.0-beta.7",
"@polkadot/extension-base": "0.25.0",
"@polkadot/extension-inject": "0.25.0",
"@polkadot/keyring": "^2.10.1",
"@polkadot/react-identicon": "^0.53.0-beta.5",
"@polkadot/react-qr": "^0.53.0-beta.5",
"@polkadot/react-identicon": "^0.53.1",
"@polkadot/react-qr": "^0.53.1",
"@polkadot/util": "^2.10.1",
"@polkadot/util-crypto": "^2.10.1",
"react": "^16.13.1",
Expand Down
8 changes: 4 additions & 4 deletions packages/extension/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@polkadot/extension",
"description": "A sample signer extension for the @polkadot/api",
"version": "0.25.0-beta.7",
"version": "0.25.0",
"author": "Jaco Greeff <[email protected]>",
"license": "Apache-2",
"dependencies": {
"@babel/runtime": "^7.9.6",
"@polkadot/extension-base": "0.25.0-beta.7",
"@polkadot/extension-inject": "0.25.0-beta.7",
"@polkadot/extension-ui": "0.25.0-beta.7"
"@polkadot/extension-base": "0.25.0",
"@polkadot/extension-inject": "0.25.0",
"@polkadot/extension-ui": "0.25.0"
},
"devDependencies": {
"@polkadot/dev": "^0.52.19",
Expand Down
Loading

0 comments on commit 3f3628c

Please sign in to comment.