From 49ad0f185f7cf1ed012ed90dcf3f3a76a2f780ad Mon Sep 17 00:00:00 2001 From: Roger Far Date: Sun, 13 Apr 2025 10:48:39 -0600 Subject: [PATCH] Fixed changelog. --- .github/workflows/build-release.yaml | 6 +++++- CHANGELOG.md | 8 ++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-release.yaml b/.github/workflows/build-release.yaml index 1b9e6f8..e7516c4 100644 --- a/.github/workflows/build-release.yaml +++ b/.github/workflows/build-release.yaml @@ -20,12 +20,16 @@ jobs: with: fetch-depth: 0 + - name: Strip 'v' from tag + id: version + run: echo "version=${GITHUB_REF_NAME#v}" >> $GITHUB_OUTPUT + - name: Get latest release info id: query-release-info uses: release-flow/keep-a-changelog-action@v2 with: command: query - version: ${{ github.ref_name }} + version: ${{ steps.version.outputs.version }} - name: Setup Node.js uses: actions/setup-node@v4 diff --git a/CHANGELOG.md b/CHANGELOG.md index 55c0648..ecd432b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,21 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [v2.0.106] - 2025-04-13 +## [2.0.106] - 2025-04-13 ### Fixed - Changed how the GitHub release is created and how the changelog is generated. -## [v2.0.105] - 2025-04-13 +## [2.0.105] - 2025-04-13 ### Added - Add feature to limit the amount of torrents that get sent to the provider at the same time. ### Fixed - Moved the websocket update process to its own background thread to improve UI update consistency. -## [v2.0.104] - 2025-04-12 +## [2.0.104] - 2025-04-12 ### Fixed - Update the version number -## [v2.0.103] - 2025-04-12 +## [2.0.103] - 2025-04-12 ### Added - Button to select all options when deleting a torrent, thanks @EugeneKallis - Add setting to ignore update notifications. A notification will appear regardless of this setting if any GitHub Security Advisories are published in this repo.