Skip to content

Commit 6859525

Browse files
[CI Skip] bump/beta 0.168.2-5-x
skip-checks: true
1 parent ee87b1a commit 6859525

File tree

62 files changed

+204
-200
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+204
-200
lines changed

CONTRIBUTORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
4364 Jaco Disable unreachable endpoints (#10221)
2-
160 Arjun Porwal fix: message (#12011)
2+
161 Arjun Porwal Displayed average block time for chains in explorer page (#11999)
33
113 Tarik Gul Fix cross-chain vesting display after Asset Hub migration (#12013)
44
81 Thibaut Sardan update overrides (#10090)
55
62 kwingram25 iadd fix (#2911)

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
},
1717
"sideEffects": false,
1818
"type": "module",
19-
"version": "0.168.2-4-x",
19+
"version": "0.168.2-5-x",
2020
"versions": {
21-
"git": "0.168.2-4-x",
21+
"git": "0.168.2-5-x",
2222
"npm": "0.168.1"
2323
},
2424
"workspaces": [

packages/apps-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"sideEffects": false,
1515
"type": "module",
16-
"version": "0.168.2-4-x",
16+
"version": "0.168.2-5-x",
1717
"main": "index.js",
1818
"dependencies": {
1919
"@acala-network/type-definitions": "5.1.2",

packages/apps-config/src/packageInfo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
// Do not edit, auto-generated by @polkadot/dev
55

6-
export const packageInfo = { name: '@polkadot/apps-config', path: 'auto', type: 'auto', version: '0.168.2-4-x' };
6+
export const packageInfo = { name: '@polkadot/apps-config', path: 'auto', type: 'auto', version: '0.168.2-5-x' };

packages/apps-electron/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"url": "https://github.com/polkadot-js/apps.git"
1616
},
1717
"sideEffects": false,
18-
"version": "0.168.2-4-x",
18+
"version": "0.168.2-5-x",
1919
"main": "build/electron.js",
2020
"dependencies": {
2121
"electron-log": "^5.0.1",

packages/apps-routing/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"sideEffects": false,
1616
"type": "module",
17-
"version": "0.168.2-4-x",
17+
"version": "0.168.2-5-x",
1818
"peerDependencies": {
1919
"react": "*",
2020
"react-dom": "*",

packages/apps/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@
1414
},
1515
"sideEffects": true,
1616
"type": "module",
17-
"version": "0.168.2-4-x",
17+
"version": "0.168.2-5-x",
1818
"dependencies": {
1919
"@acala-network/chopsticks-core": "^1.2.1",
20-
"@polkadot/apps-config": "^0.168.2-4-x",
21-
"@polkadot/apps-routing": "^0.168.2-4-x",
20+
"@polkadot/apps-config": "^0.168.2-5-x",
21+
"@polkadot/apps-routing": "^0.168.2-5-x",
2222
"@polkadot/dev": "^0.83.3",
23-
"@polkadot/react-api": "^0.168.2-4-x",
24-
"@polkadot/react-components": "^0.168.2-4-x",
25-
"@polkadot/react-hooks": "^0.168.2-4-x",
26-
"@polkadot/react-params": "^0.168.2-4-x",
27-
"@polkadot/react-query": "^0.168.2-4-x",
28-
"@polkadot/react-signer": "^0.168.2-4-x",
23+
"@polkadot/react-api": "^0.168.2-5-x",
24+
"@polkadot/react-components": "^0.168.2-5-x",
25+
"@polkadot/react-hooks": "^0.168.2-5-x",
26+
"@polkadot/react-params": "^0.168.2-5-x",
27+
"@polkadot/react-query": "^0.168.2-5-x",
28+
"@polkadot/react-signer": "^0.168.2-5-x",
2929
"punycode": "^2.3.1",
3030
"query-string": "^8.1.0",
3131
"react": "^18.2.0",

packages/apps/public/locales/en/app-explorer.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"API stats": "API stats",
3+
"Average block time calculated over the last 50 blocks": "Average block time calculated over the last 50 blocks",
34
"Block details": "Block details",
45
"Chain info": "Chain info",
56
"Forks": "Forks",
@@ -15,6 +16,7 @@
1516
"Unable to retrieve the specified block details. {{error}}": "Unable to retrieve the specified block details. {{error}}",
1617
"Waiting for next block...": "Waiting for next block...",
1718
"average": "average",
19+
"average block time": "average block time",
1820
"avg": "avg",
1921
"best": "best",
2022
"best #": "best #",

packages/apps/public/locales/en/translation.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@
119119
"Aura": "",
120120
"Authorize transaction": "",
121121
"Available": "",
122+
"Average block time calculated over the last 50 blocks": "",
122123
"Aye": "",
123124
"Aye {{count}}": "",
124125
"Aye, I approve": "",
@@ -1272,6 +1273,7 @@
12721273
"available social recovery helpers": "",
12731274
"available to be unlocked": "",
12741275
"average": "",
1276+
"average block time": "",
12751277
"avg": "",
12761278
"award bounty": "",
12771279
"award with account": "",

packages/apps/src/packageInfo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
// Do not edit, auto-generated by @polkadot/dev
55

6-
export const packageInfo = { name: '@polkadot/apps', path: 'auto', type: 'auto', version: '0.168.2-4-x' };
6+
export const packageInfo = { name: '@polkadot/apps', path: 'auto', type: 'auto', version: '0.168.2-5-x' };

0 commit comments

Comments
 (0)