Skip to content

Commit 8cae75f

Browse files
authored
chore: bump manifest version v.1.22.0 (#1836)
1 parent a769e0c commit 8cae75f

File tree

3 files changed

+35
-2
lines changed

3 files changed

+35
-2
lines changed

apps/browser-extension-wallet/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "$WALLET_MANIFEST_NAME",
33
"description": "One fast, accessible, and secure platform for digital assets, DApps, NFTs, and DeFi.",
4-
"version": "1.21.2",
4+
"version": "1.22.0",
55
"manifest_version": 3,
66
"icons": {
77
"16": "icon16.png",

apps/browser-extension-wallet/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lace/browser-extension-wallet",
3-
"version": "1.21.2",
3+
"version": "1.22.0",
44
"description": "A fully capable wallet packaged as browser extensions for Chrome, Firefox, and Edge",
55
"homepage": "https://github.com/input-output-hk/lace/blob/master/apps/browser-extension-wallet/README.md",
66
"bugs": {
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/* eslint-disable camelcase */
2+
import React from 'react';
3+
4+
const ReleaseNote_1_22_0 = (): React.ReactElement => (
5+
<>
6+
<p>
7+
<strong>Features</strong>
8+
</p>
9+
<ul style={{ listStyleType: 'disc', margin: 0 }}>
10+
<li>
11+
<strong>Bitcoin Beta Launch</strong> Users in our beta program can now store and manage BTC directly from Lace.
12+
</li>
13+
<li>
14+
<strong>Firefox Support</strong> You can now access Lace directly from one of the world's most popular browsers.
15+
</li>
16+
</ul>
17+
<br />
18+
<p>
19+
<strong>Fixes</strong>
20+
</p>
21+
<ul style={{ listStyleType: 'disc', margin: 0 }}>
22+
<li>
23+
<strong>DRep Identification</strong> We've corrected an issue where some DReps or direct voters were
24+
experiencing issues using governance DApps
25+
</li>
26+
<li>
27+
<strong>Hardware Wallets</strong> We've fixed an issue relating to output format mappings
28+
</li>
29+
</ul>
30+
</>
31+
);
32+
33+
export default ReleaseNote_1_22_0;

0 commit comments

Comments
 (0)