Browse Source

0.45 (#2961)

* 0.45

* pt
Jaco Greeff 4 years ago
parent
commit
fbacd2286f

+ 23 - 0
CHANGELOG.md

@@ -1,5 +1,28 @@
 # CHANGELOG
 
+## 0.45.1 Jun 16, 2020
+
+- I18n for ja (Thanks to https://github.com/SotaWatanabe)
+- Ia8n for pt (thanks to https://github.com/laurogripa)
+- I18n for ru (Thanks to https://github.com/illlefr4u)
+- Update Encointer types (thanks to https://github.com/brenzi)
+- Improve Electron app security settings (Thanks to https://github.com/EthWorks)
+- Rework signer dialog to cater for proxies (and multisig/proxy combinations)
+- Construct payouts with oldest eras first (expire first)
+- Show outstanding multisig approvals on accounts page
+- Allow for addition of proxied accounts (access to proxy account only)
+- Change claims to handle no statements required (new module now on Kusama)
+- Publish docker image on release
+- update collective calls to handle weights enhancements for latest Substrate
+- Allow for tip endorsements with 0 value
+- add Centrifuge live as a connection option
+- Adjust Polkascan links with current active chains
+- When collective proposal is in close state, hide vote buttons
+- Cleanup technical committee display (header alignment)
+- Adjust IPFS/IPNS network extraction for local gateways
+- `@polkadot/api` 1.19.1
+- `@polkadot/util` 2.14.1
+
 ## 0.44.1 Jun 10, 2020
 
 - Publish electron images on release (Thanks to https://github.com/EthWorks)

+ 1 - 1
lerna.json

@@ -10,5 +10,5 @@
   "packages": [
     "packages/*"
   ],
-  "version": "0.45.0-beta.33"
+  "version": "0.45.0"
 }

+ 11 - 11
package.json

@@ -4,7 +4,7 @@
   "main": "packages/apps-electron/build/electron.js",
   "description": "An Apps portal into the Polkadot network",
   "author": "Jaco Greeff <jacogr@gmail.com>",
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "license": "Apache-2",
   "private": true,
   "homepage": ".",
@@ -33,12 +33,12 @@
     "afterSign": "electron-builder-notarize"
   },
   "resolutions": {
-    "@polkadot/api": "^1.19.0-beta.3",
-    "@polkadot/api-contract": "^1.19.0-beta.3",
-    "@polkadot/keyring": "^2.14.0-beta.0",
-    "@polkadot/types": "^1.19.0-beta.3",
-    "@polkadot/util": "^2.14.0-beta.0",
-    "@polkadot/util-crypto": "^2.14.0-beta.0",
+    "@polkadot/api": "^1.19.1",
+    "@polkadot/api-contract": "^1.19.1",
+    "@polkadot/keyring": "^2.14.1",
+    "@polkadot/types": "^1.19.1",
+    "@polkadot/util": "^2.14.1",
+    "@polkadot/util-crypto": "^2.14.1",
     "babel-core": "^7.0.0-bridge.0"
   },
   "scripts": {
@@ -80,13 +80,13 @@
     "@babel/register": "^7.10.1",
     "@babel/runtime": "^7.10.2",
     "@pinata/sdk": "^1.1.10",
-    "@polkadot/dev": "^0.55.9",
+    "@polkadot/dev": "^0.55.10",
     "@polkadot/ts": "^0.3.26",
     "@types/bn.js": "^4.11.6",
     "@types/chart.js": "^2.9.21",
     "@types/file-saver": "^2.0.1",
     "@types/i18next": "^13.0.0",
-    "@types/jest": "^25.2.3",
+    "@types/jest": "^26.0.0",
     "@types/react-beautiful-dnd": "^13.0.0",
     "@types/react-copy-to-clipboard": "^4.3.0",
     "@types/react-dom": "^16.9.8",
@@ -98,7 +98,7 @@
     "concurrently": "^5.2.0",
     "devtron": "^1.4.0",
     "dnslink-cloudflare": "^2.0.4",
-    "electron": "^9.0.3",
+    "electron": "^9.0.4",
     "electron-builder": "^22.7.0",
     "electron-builder-notarize": "^1.1.2",
     "i18next-scanner": "^2.11.0",
@@ -108,7 +108,7 @@
     "stylelint": "^13.6.0",
     "stylelint-config-recommended": "^3.0.0",
     "stylelint-config-styled-components": "^0.1.1",
-    "terser-webpack-plugin": "^3.0.3",
+    "terser-webpack-plugin": "^3.0.5",
     "webpack": "^4.43.0",
     "webpack-cli": "^3.3.11",
     "webpack-merge": "^4.2.2",

+ 1 - 1
packages/apps-config/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/apps-config",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "main": "index.js",
   "repository": "https://github.com/polkadot-js/apps.git",
   "author": "Jaco Greeff <jacogr@gmail.com>",

+ 4 - 4
packages/apps-electron/package.json

@@ -2,12 +2,12 @@
   "name": "@polkadot/apps-electron",
   "main": "index.js",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "dependencies": {
     "@babel/polyfill": "^7.10.1",
-    "@polkadot/dev": "^0.55.9",
-    "@polkadot/react-components": "0.45.0-beta.33",
-    "electron-updater": "^4.3.3"
+    "@polkadot/dev": "^0.55.10",
+    "@polkadot/react-components": "0.45.0",
+    "electron-updater": "^4.3.1"
   },
   "devDependencies": {
     "@types/react": "^16.9.36",

+ 1 - 1
packages/apps-routing/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/apps-routing",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "main": "index.js",
   "repository": "https://github.com/polkadot-js/apps.git",
   "author": "Jaco Greeff <jacogr@gmail.com>",

+ 5 - 5
packages/apps/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/apps",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "description": "An Apps portal into the Polkadot network",
   "main": "index.js",
   "homepage": ".",
@@ -15,15 +15,15 @@
   "dependencies": {
     "@babel/polyfill": "^7.10.1",
     "@babel/runtime": "^7.10.2",
-    "@polkadot/dev": "^0.55.9",
-    "@polkadot/react-components": "0.45.0-beta.33",
-    "@polkadot/react-signer": "0.45.0-beta.33",
+    "@polkadot/dev": "^0.55.10",
+    "@polkadot/react-components": "0.45.0",
+    "@polkadot/react-signer": "0.45.0",
     "query-string": "^6.13.1"
   },
   "devDependencies": {
     "babel-loader": "^8.1.0",
     "copy-webpack-plugin": "^6.0.2",
-    "css-loader": "^3.5.3",
+    "css-loader": "^3.6.0",
     "empty": "^0.10.1",
     "file-loader": "^6.0.0",
     "html-loader": "^1.1.0",

+ 2 - 2
packages/page-123code/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/app-123code",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "description": "A basic app that shows the ropes on customisation",
   "main": "index.js",
   "scripts": {},
@@ -12,6 +12,6 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/react-components": "0.45.0-beta.33"
+    "@polkadot/react-components": "0.45.0"
   }
 }

+ 4 - 4
packages/page-accounts/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/app-accounts",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "main": "index.js",
   "repository": "https://github.com/polkadot-js/apps.git",
   "author": "Jaco Greeff <jacogr@gmail.com>",
@@ -12,9 +12,9 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/react-components": "0.45.0-beta.33",
-    "@polkadot/react-qr": "^0.54.0-beta.7",
-    "@polkadot/vanitygen": "^0.14.0-beta.2",
+    "@polkadot/react-components": "0.45.0",
+    "@polkadot/react-qr": "^0.54.1",
+    "@polkadot/vanitygen": "^0.14.1",
     "detect-browser": "^5.1.0",
     "file-saver": "^2.0.2"
   }

+ 2 - 2
packages/page-claims/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/app-claims",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "description": "An app for claiming Polkadot tokens",
   "main": "index.js",
   "scripts": {},
@@ -13,7 +13,7 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/react-components": "0.45.0-beta.33",
+    "@polkadot/react-components": "0.45.0",
     "secp256k1": "^3.8.0"
   }
 }

+ 2 - 2
packages/page-contracts/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/app-contracts",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "description": "Deployment and management of substrate contracts",
   "main": "index.js",
   "scripts": {},
@@ -12,6 +12,6 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/api-contract": "^1.19.0-beta.3"
+    "@polkadot/api-contract": "^1.19.1"
   }
 }

+ 3 - 3
packages/page-council/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/app-council",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "description": "Council",
   "main": "index.js",
   "scripts": {},
@@ -12,7 +12,7 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/react-components": "0.45.0-beta.33",
-    "@polkadot/react-query": "0.45.0-beta.33"
+    "@polkadot/react-components": "0.45.0",
+    "@polkadot/react-query": "0.45.0"
   }
 }

+ 3 - 3
packages/page-dashboard/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/app-dashboard",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "description": "Dashboard for all apps, allowing for an overview and quick navigation",
   "main": "index.js",
   "scripts": {},
@@ -12,7 +12,7 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/apps-routing": "0.45.0-beta.33",
-    "@polkadot/react-components": "0.45.0-beta.33"
+    "@polkadot/apps-routing": "0.45.0",
+    "@polkadot/react-components": "0.45.0"
   }
 }

+ 3 - 3
packages/page-democracy/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/app-democracy",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "description": "A referendum & proposal app",
   "main": "index.js",
   "scripts": {},
@@ -12,7 +12,7 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/react-components": "0.45.0-beta.33",
-    "@polkadot/react-query": "0.45.0-beta.33"
+    "@polkadot/react-components": "0.45.0",
+    "@polkadot/react-query": "0.45.0"
   }
 }

+ 2 - 2
packages/page-explorer/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/app-explorer",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "main": "index.js",
   "repository": "https://github.com/polkadot-js/apps.git",
   "author": "Jaco Greeff <jacogr@gmail.com>",
@@ -12,6 +12,6 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/react-components": "0.45.0-beta.33"
+    "@polkadot/react-components": "0.45.0"
   }
 }

+ 4 - 4
packages/page-extrinsics/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/app-extrinsics",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "main": "index.js",
   "repository": "https://github.com/polkadot-js/apps.git",
   "author": "Jaco Greeff <jacogr@gmail.com>",
@@ -12,8 +12,8 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/react-components": "0.45.0-beta.33",
-    "@polkadot/react-params": "0.45.0-beta.33",
-    "@polkadot/react-signer": "0.45.0-beta.33"
+    "@polkadot/react-components": "0.45.0",
+    "@polkadot/react-params": "0.45.0",
+    "@polkadot/react-signer": "0.45.0"
   }
 }

+ 2 - 2
packages/page-generic-asset/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/app-generic-asset",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "description": "A basic GenericAsset transfer app",
   "main": "index.js",
   "scripts": {},
@@ -12,6 +12,6 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/react-components": "0.45.0-beta.33"
+    "@polkadot/react-components": "0.45.0"
   }
 }

+ 2 - 2
packages/page-i18n/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/app-i18n",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "description": "A basic string translayor",
   "main": "index.js",
   "scripts": {},
@@ -12,6 +12,6 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/react-components": "0.45.0-beta.33"
+    "@polkadot/react-components": "0.45.0"
   }
 }

+ 2 - 2
packages/page-js/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/app-js",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "description": "A simple JavaScript console for playing with the API",
   "main": "index.js",
   "scripts": {},
@@ -12,6 +12,6 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/react-components": "0.45.0-beta.33"
+    "@polkadot/react-components": "0.45.0"
   }
 }

+ 3 - 3
packages/page-parachains/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/app-parachains",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "description": "Parachains",
   "main": "index.js",
   "scripts": {},
@@ -12,7 +12,7 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/react-components": "0.45.0-beta.33",
-    "@polkadot/react-query": "0.45.0-beta.33"
+    "@polkadot/react-components": "0.45.0",
+    "@polkadot/react-query": "0.45.0"
   }
 }

+ 4 - 4
packages/page-settings/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/app-settings",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "description": "Settings management",
   "main": "index.js",
   "scripts": {},
@@ -12,9 +12,9 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/apps-config": "0.45.0-beta.33",
-    "@polkadot/react-components": "0.45.0-beta.33",
-    "@polkadot/react-query": "0.45.0-beta.33",
+    "@polkadot/apps-config": "0.45.0",
+    "@polkadot/react-components": "0.45.0",
+    "@polkadot/react-query": "0.45.0",
     "query-string": "^6.13.1"
   }
 }

+ 2 - 2
packages/page-society/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/app-society",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "description": "A society",
   "main": "index.js",
   "scripts": {},
@@ -9,6 +9,6 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/react-components": "0.45.0-beta.33"
+    "@polkadot/react-components": "0.45.0"
   }
 }

+ 4 - 4
packages/page-staking/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/app-staking",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "description": "A basic staking app",
   "main": "index.js",
   "scripts": {},
@@ -12,8 +12,8 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/app-explorer": "0.45.0-beta.33",
-    "@polkadot/react-components": "0.45.0-beta.33",
-    "@polkadot/react-query": "0.45.0-beta.33"
+    "@polkadot/app-explorer": "0.45.0",
+    "@polkadot/react-components": "0.45.0",
+    "@polkadot/react-query": "0.45.0"
   }
 }

+ 3 - 3
packages/page-storage/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/app-storage",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "main": "index.js",
   "repository": "https://github.com/polkadot-js/apps.git",
   "author": "Jaco Greeff <jacogr@gmail.com>",
@@ -12,7 +12,7 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/react-components": "0.45.0-beta.33",
-    "@polkadot/react-params": "0.45.0-beta.33"
+    "@polkadot/react-components": "0.45.0",
+    "@polkadot/react-params": "0.45.0"
   }
 }

+ 2 - 2
packages/page-sudo/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/app-sudo",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "description": "A basic app that shows the ropes on customisation",
   "main": "index.js",
   "scripts": {},
@@ -13,6 +13,6 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/react-components": "0.45.0-beta.33"
+    "@polkadot/react-components": "0.45.0"
   }
 }

+ 3 - 3
packages/page-tech-comm/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/app-tech-comm",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "description": "Council",
   "main": "index.js",
   "scripts": {},
@@ -12,7 +12,7 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/react-components": "0.45.0-beta.33",
-    "@polkadot/react-query": "0.45.0-beta.33"
+    "@polkadot/react-components": "0.45.0",
+    "@polkadot/react-query": "0.45.0"
   }
 }

+ 2 - 2
packages/page-toolbox/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/app-toolbox",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "main": "index.js",
   "repository": "https://github.com/polkadot-js/apps.git",
   "author": "Jaco Greeff <jacogr@gmail.com>",
@@ -12,6 +12,6 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/react-components": "0.45.0-beta.33"
+    "@polkadot/react-components": "0.45.0"
   }
 }

+ 3 - 3
packages/page-treasury/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@polkadot/app-treasury",
   "private": true,
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "description": "A referendum & proposal app",
   "main": "index.js",
   "scripts": {},
@@ -13,7 +13,7 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/react-components": "0.45.0-beta.33",
-    "@polkadot/react-query": "0.45.0-beta.33"
+    "@polkadot/react-components": "0.45.0",
+    "@polkadot/react-query": "0.45.0"
   }
 }

+ 2 - 2
packages/react-api/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@polkadot/react-api",
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "description": "A collection of RxJs React components the Polkadot JS API",
   "main": "index.js",
   "keywords": [
@@ -31,7 +31,7 @@
   "homepage": "https://github.com/polkadot-js/ui/tree/master/packages/ui-reactive#readme",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/api": "^1.19.0-beta.3",
+    "@polkadot/api": "^1.19.1",
     "@polkadot/extension-dapp": "^0.26.0-beta.26",
     "rxjs-compat": "^6.5.5"
   }

+ 9 - 9
packages/react-components/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@polkadot/react-components",
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "main": "index.js",
   "repository": "https://github.com/polkadot-js/apps.git",
   "author": "Jaco Greeff <jacogr@gmail.com>",
@@ -11,16 +11,16 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/keyring": "^2.14.0-beta.0",
-    "@polkadot/react-api": "0.45.0-beta.33",
-    "@polkadot/react-identicon": "^0.54.0-beta.7",
-    "@polkadot/react-query": "0.45.0-beta.33",
-    "@polkadot/ui-keyring": "^0.54.0-beta.7",
-    "@polkadot/ui-settings": "^0.54.0-beta.7",
+    "@polkadot/keyring": "^2.14.1",
+    "@polkadot/react-api": "0.45.0",
+    "@polkadot/react-identicon": "^0.54.1",
+    "@polkadot/react-query": "0.45.0",
+    "@polkadot/ui-keyring": "^0.54.1",
+    "@polkadot/ui-settings": "^0.54.1",
     "chart.js": "^2.9.3",
     "codeflask": "^1.4.1",
     "i18next": "^19.4.5",
-    "i18next-browser-languagedetector": "^4.2.0",
+    "i18next-browser-languagedetector": "^4.3.0",
     "react": "^16.13.1",
     "react-beautiful-dnd": "^13.0.0",
     "react-chartjs-2": "^2.9.0",
@@ -32,7 +32,7 @@
     "react-markdown": "^4.3.1",
     "react-router": "^5.2.0",
     "react-router-dom": "^5.2.0",
-    "react-tooltip": "^4.2.6",
+    "react-tooltip": "^4.2.7",
     "semantic-ui-css": "^2.4.1",
     "semantic-ui-react": "^0.88.2",
     "store": "^2.0.12",

+ 1 - 1
packages/react-hooks/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@polkadot/react-hooks",
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "description": "A collection of React hooks the Polkadot JS Apps UI",
   "main": "index.js",
   "keywords": [

+ 2 - 2
packages/react-params/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@polkadot/react-params",
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "main": "index.js",
   "repository": "https://github.com/polkadot-js/apps.git",
   "author": "Jaco Greeff <jacogr@gmail.com>",
@@ -11,6 +11,6 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/react-components": "0.45.0-beta.33"
+    "@polkadot/react-components": "0.45.0"
   }
 }

+ 1 - 1
packages/react-query/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@polkadot/react-query",
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "description": "A collection of RxJs React components the Polkadot JS API",
   "main": "index.js",
   "keywords": [

+ 3 - 3
packages/react-signer/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@polkadot/react-signer",
-  "version": "0.45.0-beta.33",
+  "version": "0.45.0",
   "main": "index.js",
   "repository": "https://github.com/polkadot-js/apps.git",
   "author": "Jaco Greeff <jacogr@gmail.com>",
@@ -11,7 +11,7 @@
   "license": "Apache-2.0",
   "dependencies": {
     "@babel/runtime": "^7.10.2",
-    "@polkadot/react-components": "0.45.0-beta.33",
-    "@polkadot/react-qr": "^0.54.0-beta.7"
+    "@polkadot/react-components": "0.45.0",
+    "@polkadot/react-qr": "^0.54.1"
   }
 }

File diff suppressed because it is too large
+ 262 - 271
yarn.lock


Some files were not shown because too many files changed in this diff