Skip to content

Commit 05d745d

Browse files
authored
chore: bump version to v1.21.2 (#1835)
- Also removes the old Discord vanity URL - Uses Lace Discord URL in the example ENV file
1 parent cf418cc commit 05d745d

File tree

5 files changed

+24
-4
lines changed

5 files changed

+24
-4
lines changed

apps/browser-extension-wallet/.env.developerpreview

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ CATALYST_APP_STORE_URL=https://apps.apple.com/fr/app/catalyst-voting/id151747339
4040
TWITTER_URL=https://twitter.com/lace_io
4141
YOUTUBE_URL=https://www.youtube.com/c/Laceio
4242
GITHUB_URL=https://github.com/input-output-hk
43-
DISCORD_URL=https://discord.gg/lacewallet
43+
DISCORD_URL=https://discord.gg/lace-1073034511664824360
4444
WEBSITE_URL=https://www.lace.io
4545
EMAIL_ADDRESS=lace@iohk.io
4646
HELP_URL=https://iohk.zendesk.com/hc/en-us/requests/new

apps/browser-extension-wallet/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ CATALYST_APP_STORE_URL=https://apps.apple.com/fr/app/catalyst-voting/id151747339
3939
TWITTER_URL=https://twitter.com/lace_io
4040
YOUTUBE_URL=https://www.youtube.com/c/Laceio
4141
GITHUB_URL=https://github.com/input-output-hk
42-
DISCORD_URL=https://discord.gg/inputoutput
42+
DISCORD_URL=https://discord.gg/lace-1073034511664824360
4343
WEBSITE_URL=https://www.lace.io
4444
EMAIL_ADDRESS=lace@iohk.io
4545
HELP_URL=https://iohk.zendesk.com/hc/en-us/requests/new

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.1",
4+
"version": "1.21.2",
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.1",
3+
"version": "1.21.2",
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: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/* eslint-disable camelcase */
2+
import React from 'react';
3+
4+
const ReleaseNote_1_21_2 = (): React.ReactElement => (
5+
<>
6+
<p>
7+
A previously used vanity Discord invite link has expired and is now controlled by a third party. It may lead to
8+
malicious content or impersonation.
9+
</p>
10+
<ul style={{ listStyleType: 'disc', margin: 0 }}>
11+
<li>
12+
<strong>Do NOT click or trust the old link. </strong>If you've already joined the server through that link,
13+
please leave and report it immediately. The only official and safe invite going forward is:
14+
https://discord.gg/lace-1073034511664824360.
15+
</li>
16+
</ul>
17+
</>
18+
);
19+
20+
export default ReleaseNote_1_21_2;

0 commit comments

Comments
 (0)