Skip to content

Commit 59302eb

Browse files
committed
Bump version to 2.0.21
1 parent 3cdc23b commit 59302eb

7 files changed

Lines changed: 33 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,15 @@ Thanks to the following contributors who worked on this release:
88

99
### Added
1010

11+
### Changed
12+
13+
### Fixed
14+
15+
## [2.0.21] - 2024-11-20
16+
17+
Thanks to the following contributors who worked on this release:
18+
- @cameronwhite
19+
1120
### Changed
1221
- The barline under the cursor can now be deleted without requiring it to be selected first
1322

@@ -501,6 +510,7 @@ Thanks to the following contributors who worked on this release:
501510
* The first alpha release!
502511

503512
[Unreleased]: https://github.com/powertab/powertabeditor/compare/2.0.20...HEAD
513+
[2.0.21]: https://github.com/powertab/powertabeditor/releases/tag/2.0.21
504514
[2.0.20]: https://github.com/powertab/powertabeditor/releases/tag/2.0.20
505515
[Alpha 19]: https://github.com/powertab/powertabeditor/releases/tag/2.0.0-alpha19
506516
[Alpha 18]: https://github.com/powertab/powertabeditor/releases/tag/2.0.0-alpha18

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ set( CMAKE_MODULE_PATH
1818
${CMAKE_SOURCE_DIR}/cmake/third_party/modules
1919
)
2020

21-
set( PTE_VERSION 2.0.20 )
21+
set( PTE_VERSION 2.0.21 )
2222

2323
include( PTE_Platform )
2424
include( PTE_CompilerFlags )

installer/osx/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set( CPACK_PACKAGE_VENDOR "Power Tab" )
88

99
set( CPACK_PACKAGE_VERSION_MAJOR "2" )
1010
set( CPACK_PACKAGE_VERSION_MINOR "0" )
11-
set( CPACK_PACKAGE_VERSION_PATCH "20" )
11+
set( CPACK_PACKAGE_VERSION_PATCH "21" )
1212
set( CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/license.txt" )
1313

1414
set( system_name "osx" )

installer/snap/snapcraft.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
name: powertabeditor
66
base: core22
7-
version: '2.0.21-beta1'
7+
version: '2.0.21'
88
adopt-info: powertabeditor
99

1010
grade: stable
@@ -15,7 +15,7 @@ parts:
1515
parse-info: [usr/local/share/metainfo/powertabeditor.metainfo.xml]
1616
plugin: cmake
1717
source: https://github.com/powertab/powertabeditor.git
18-
source-tag: 2.0.21-beta1
18+
source-tag: 2.0.21
1919
cmake-generator: Ninja
2020
cmake-parameters:
2121
- -DCMAKE_BUILD_TYPE=Release

installer/windows/installer.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#define ProductName "Power Tab Editor"
22
#define ExeName "powertabeditor"
33
#define GroupName "Power Tab"
4-
#define ProductVersion "2.0.20"
4+
#define ProductVersion "2.0.21"
55

66
#define public Dependency_NoExampleSetup
77
#include "CodeDependencies.iss"

source/app/appinfo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ namespace AppInfo
2727
const char *TRANSLATIONS_URL =
2828
"https://hosted.weblate.org/engage/powertabeditor";
2929
const char *APPLICATION_NAME = "Power Tab Editor";
30-
const char *APPLICATION_VERSION = "2.0.20";
30+
const char *APPLICATION_VERSION = "2.0.21";
3131

3232
#if defined(Q_OS_WIN)
3333
const char *ORGANIZATION_NAME = "Power Tab";

xdg/powertabeditor.metainfo.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,23 @@
4444
</provides>
4545

4646
<releases>
47+
<release version="2.0.21" date="2024-11-20">
48+
<url>https://github.com/powertab/powertabeditor/releases/tag/2.0.21</url>
49+
<description>
50+
<p>Changes</p>
51+
<ul>
52+
<li>The barline under the cursor can now be deleted without requiring it to be selected first</li>
53+
</ul>
54+
<p>Bug Fixes</p>
55+
<ul>
56+
<li>Fixed AppStream validation issues in `xdg/powertabeditor.metainfo.xml`</li>
57+
<li>Updated the MSVC redistributable for the Windows installer to be compatible with Visual Studio 2022</li>
58+
<li>Fixed a bug which could prevent barlines from being deleted (#496)</li>
59+
<li>Fixed errors with saving files in the Snap or Flatpak packages (#498)</li>
60+
<li>Fixed sizing issues in the playback widget on Windows (#495, #497)</li>
61+
</ul>
62+
</description>
63+
</release>
4764
<release version="2.0.20" date="2024-11-03">
4865
<url>https://github.com/powertab/powertabeditor/releases/tag/2.0.20</url>
4966
<description>

0 commit comments

Comments
 (0)