Skip to content

Commit e8896c0

Browse files
authored
chore: main branch with 1.6.1 manifest and release note (#695)
* chore(extension): update manifest version * chore: add 1.6.1 release note
1 parent e0618b2 commit e8896c0

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-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": "Lace",
33
"description": "One fast, accessible, and secure platform for digital assets, DApps, NFTs, and DeFi.",
4-
"version": "1.6.0",
4+
"version": "1.6.1",
55
"manifest_version": 3,
66
"key": "$LACE_EXTENSION_KEY",
77
"icons": {

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.6.0",
3+
"version": "1.6.1",
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: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/* eslint-disable camelcase */
2+
import React from 'react';
3+
4+
const ReleaseNote_1_6_1 = (): React.ReactElement => (
5+
<>
6+
<p>Introducing Lace 1.6.1 This hotfix version solves the following:</p>
7+
<ul style={{ listStyleType: 'disc', margin: 0 }}>
8+
<li>Fixed a minor data fetch issue</li>
9+
</ul>
10+
</>
11+
);
12+
13+
export default ReleaseNote_1_6_1;

0 commit comments

Comments
 (0)