From 66b8efa222ac2edbba00b2fd755d3b828c217356 Mon Sep 17 00:00:00 2001 From: Pete Watters <2938440+pete-watters@users.noreply.github.com> Date: Tue, 19 Sep 2023 10:16:44 +0100 Subject: [PATCH 1/4] fix: fix typo in leather-wallet, closes #1221 --- app/constants/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/constants/index.ts b/app/constants/index.ts index 4fd7c2448..d20f4ca3c 100644 --- a/app/constants/index.ts +++ b/app/constants/index.ts @@ -32,7 +32,7 @@ export const DEFAULT_STACKS_NODE_URL = whenNetwork({ export const EXPLORER_URL = 'https://explorer.hiro.so'; -export const GITHUB_ORG = 'leather-walet'; +export const GITHUB_ORG = 'leather-wallet'; export const GITHUB_REPO = 'desktop'; From 4cd64ac9a8149a3648e2b80dfebfb92156a3379b Mon Sep 17 00:00:00 2001 From: Pete Watters <2938440+pete-watters@users.noreply.github.com> Date: Tue, 19 Sep 2023 10:19:14 +0100 Subject: [PATCH 2/4] fix: update link to leather-wallet desktop download, closes #1220 --- app/components/title-bar/title-bar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/title-bar/title-bar.tsx b/app/components/title-bar/title-bar.tsx index 2e0996f82..275f36e0f 100644 --- a/app/components/title-bar/title-bar.tsx +++ b/app/components/title-bar/title-bar.tsx @@ -53,7 +53,7 @@ export const TitleBar: FC = () => { {isNewerReleaseAvailable && latestRelease && ( openExternalLink('https://www.hiro.so/wallet/install-desktop')} + onClick={() => openExternalLink('https://leather.io/wallet/install-desktop')} /> )} From d8647815c04db5492669bb2f79547da037195911 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 19 Sep 2023 13:27:29 +0000 Subject: [PATCH 3/4] chore(release): 4.14.1-dev.1 ## [4.14.1-dev.1](https://github.com/leather-wallet/desktop/compare/v4.14.0...v4.14.1-dev.1) (2023-09-19) ### Bug Fixes * fix typo in leather-wallet, closes [#1221](https://github.com/leather-wallet/desktop/issues/1221) ([66b8efa](https://github.com/leather-wallet/desktop/commit/66b8efa222ac2edbba00b2fd755d3b828c217356)) * update link to leather-wallet desktop download, closes [#1220](https://github.com/leather-wallet/desktop/issues/1220) ([4cd64ac](https://github.com/leather-wallet/desktop/commit/4cd64ac9a8149a3648e2b80dfebfb92156a3379b)) --- CHANGELOG.md | 8 ++++++++ package.json | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a989ca6ec..2e560ea7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [4.14.1-dev.1](https://github.com/leather-wallet/desktop/compare/v4.14.0...v4.14.1-dev.1) (2023-09-19) + + +### Bug Fixes + +* fix typo in leather-wallet, closes [#1221](https://github.com/leather-wallet/desktop/issues/1221) ([66b8efa](https://github.com/leather-wallet/desktop/commit/66b8efa222ac2edbba00b2fd755d3b828c217356)) +* update link to leather-wallet desktop download, closes [#1220](https://github.com/leather-wallet/desktop/issues/1220) ([4cd64ac](https://github.com/leather-wallet/desktop/commit/4cd64ac9a8149a3648e2b80dfebfb92156a3379b)) + # [4.14.0](https://github.com/leather-wallet/desktop/compare/v4.13.0...v4.14.0) (2023-09-01) diff --git a/package.json b/package.json index a58f24f0a..42a66724f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stacks-wallet", - "version": "4.14.0", + "version": "4.14.1-dev.1", "description": "Leather 2.0 — Stacking", "prettier": "@stacks/prettier-config", "homepage": "https://hiro.so/wallet", From ef6e47dd27b715a890de372c7723bb64b1b692d2 Mon Sep 17 00:00:00 2001 From: kyranjamie Date: Tue, 19 Sep 2023 18:03:40 +0200 Subject: [PATCH 4/4] ci: remove announce release --- .github/workflows/publish-version.yml | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/.github/workflows/publish-version.yml b/.github/workflows/publish-version.yml index 4ac2260de..843ec1edc 100644 --- a/.github/workflows/publish-version.yml +++ b/.github/workflows/publish-version.yml @@ -206,27 +206,3 @@ jobs: asset_path: release/leather-wallet-${{ matrix.stx_network }}-${{ matrix.os }}/leather-wallet.${{ matrix.stx_network }}.${{ matrix.ext }} asset_name: leather-wallet.${{ matrix.stx_network }}.v${{ needs.create-release.outputs.new_version }}.${{ matrix.ext }} asset_content_type: application/octet-stream - - announce-release: - runs-on: ubuntu-20.04 - env: - DISCORD_WEBHOOK: ${{ secrets.DISCORD_UX_NOTIFS_WEBHOOK }} - - needs: - - create-release - - upload-release-assets - - steps: - - name: Discord Stable Release Notification - if: contains(needs.create-release.outputs.new_version, 'dev') == false - uses: Ilshidur/action-discord@master - with: - args: | - 🔔 New Leather released: [Download `v${{ needs.create-release.outputs.new_version }}` here](https://github.com/${{ github.repository }}/releases/tag/v${{ needs.create-release.outputs.new_version }}) - - - name: Discord Dev Release Notification - if: contains(needs.create-release.outputs.new_version, 'dev') == true - uses: Ilshidur/action-discord@master - with: - args: | - New Leather Preview released: [Download `v${{ needs.create-release.outputs.new_version }}` here](https://github.com/${{ github.repository }}/releases/tag/v${{ needs.create-release.outputs.new_version }})