Skip to content

Commit

Permalink
Bump version to 2.0.21
Browse files Browse the repository at this point in the history
  • Loading branch information
cameronwhite committed Nov 21, 2024
1 parent 3cdc23b commit 59302eb
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ Thanks to the following contributors who worked on this release:

### Added

### Changed

### Fixed

## [2.0.21] - 2024-11-20

Thanks to the following contributors who worked on this release:
- @cameronwhite

### Changed
- The barline under the cursor can now be deleted without requiring it to be selected first

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

[Unreleased]: https://github.com/powertab/powertabeditor/compare/2.0.20...HEAD
[2.0.21]: https://github.com/powertab/powertabeditor/releases/tag/2.0.21
[2.0.20]: https://github.com/powertab/powertabeditor/releases/tag/2.0.20
[Alpha 19]: https://github.com/powertab/powertabeditor/releases/tag/2.0.0-alpha19
[Alpha 18]: https://github.com/powertab/powertabeditor/releases/tag/2.0.0-alpha18
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ set( CMAKE_MODULE_PATH
${CMAKE_SOURCE_DIR}/cmake/third_party/modules
)

set( PTE_VERSION 2.0.20 )
set( PTE_VERSION 2.0.21 )

include( PTE_Platform )
include( PTE_CompilerFlags )
Expand Down
2 changes: 1 addition & 1 deletion installer/osx/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set( CPACK_PACKAGE_VENDOR "Power Tab" )

set( CPACK_PACKAGE_VERSION_MAJOR "2" )
set( CPACK_PACKAGE_VERSION_MINOR "0" )
set( CPACK_PACKAGE_VERSION_PATCH "20" )
set( CPACK_PACKAGE_VERSION_PATCH "21" )
set( CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/license.txt" )

set( system_name "osx" )
Expand Down
4 changes: 2 additions & 2 deletions installer/snap/snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

name: powertabeditor
base: core22
version: '2.0.21-beta1'
version: '2.0.21'
adopt-info: powertabeditor

grade: stable
Expand All @@ -15,7 +15,7 @@ parts:
parse-info: [usr/local/share/metainfo/powertabeditor.metainfo.xml]
plugin: cmake
source: https://github.com/powertab/powertabeditor.git
source-tag: 2.0.21-beta1
source-tag: 2.0.21
cmake-generator: Ninja
cmake-parameters:
- -DCMAKE_BUILD_TYPE=Release
Expand Down
2 changes: 1 addition & 1 deletion installer/windows/installer.iss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define ProductName "Power Tab Editor"
#define ExeName "powertabeditor"
#define GroupName "Power Tab"
#define ProductVersion "2.0.20"
#define ProductVersion "2.0.21"

#define public Dependency_NoExampleSetup
#include "CodeDependencies.iss"
Expand Down
2 changes: 1 addition & 1 deletion source/app/appinfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace AppInfo
const char *TRANSLATIONS_URL =
"https://hosted.weblate.org/engage/powertabeditor";
const char *APPLICATION_NAME = "Power Tab Editor";
const char *APPLICATION_VERSION = "2.0.20";
const char *APPLICATION_VERSION = "2.0.21";

#if defined(Q_OS_WIN)
const char *ORGANIZATION_NAME = "Power Tab";
Expand Down
17 changes: 17 additions & 0 deletions xdg/powertabeditor.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,23 @@
</provides>

<releases>
<release version="2.0.21" date="2024-11-20">
<url>https://github.com/powertab/powertabeditor/releases/tag/2.0.21</url>
<description>
<p>Changes</p>
<ul>
<li>The barline under the cursor can now be deleted without requiring it to be selected first</li>
</ul>
<p>Bug Fixes</p>
<ul>
<li>Fixed AppStream validation issues in `xdg/powertabeditor.metainfo.xml`</li>
<li>Updated the MSVC redistributable for the Windows installer to be compatible with Visual Studio 2022</li>
<li>Fixed a bug which could prevent barlines from being deleted (#496)</li>
<li>Fixed errors with saving files in the Snap or Flatpak packages (#498)</li>
<li>Fixed sizing issues in the playback widget on Windows (#495, #497)</li>
</ul>
</description>
</release>
<release version="2.0.20" date="2024-11-03">
<url>https://github.com/powertab/powertabeditor/releases/tag/2.0.20</url>
<description>
Expand Down

0 comments on commit 59302eb

Please sign in to comment.