Skip to content

Commit

Permalink
chore: bump manifest version v1.19.1 (#1675)
Browse files Browse the repository at this point in the history
  • Loading branch information
mchappell committed Jan 28, 2025
1 parent 0cad1ec commit 3fc11f4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/browser-extension-wallet/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "$WALLET_MANIFEST_NAME",
"description": "One fast, accessible, and secure platform for digital assets, DApps, NFTs, and DeFi.",
"version": "1.19.0",
"version": "1.19.1",
"manifest_version": 3,
"key": "$LACE_EXTENSION_KEY",
"icons": {
Expand Down
2 changes: 1 addition & 1 deletion apps/browser-extension-wallet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lace/browser-extension-wallet",
"version": "1.19.0",
"version": "1.19.1",
"description": "A fully capable wallet packaged as browser extensions for Chrome, Firefox, and Edge",
"homepage": "https://github.com/input-output-hk/lace/blob/master/apps/browser-extension-wallet/README.md",
"bugs": {
Expand Down
13 changes: 13 additions & 0 deletions apps/browser-extension-wallet/src/release-notes/1_19_1.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/* eslint-disable camelcase */
import React from 'react';

const ReleaseNote_1_19_1 = (): React.ReactElement => (
<>
<p>In this release:</p>
<ul style={{ listStyleType: 'disc', margin: 0 }}>
<li>Network requests now pause when the app is idle, reducing unnecessary network demand</li>
</ul>
</>
);

export default ReleaseNote_1_19_1;

0 comments on commit 3fc11f4

Please sign in to comment.