Bump version to 1.0.2

This commit is contained in:
Sebastian Palencsar
2026-05-28 08:30:11 +02:00
parent c1a1152169
commit 954157e605
4 changed files with 17 additions and 2 deletions

View File

@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [1.0.2] - 2026-05-28
### Added
- SPDX license identifiers (GPL-3.0-or-later) to all source files.

View File

@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.16)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
project(bearwave VERSION 1.0.1 LANGUAGES CXX)
project(bearwave VERSION 1.0.2 LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

View File

@@ -59,6 +59,19 @@
</provides>
<releases>
<release version="1.0.2" date="2026-05-28">
<description>
<ul>
<li>Fixed crash in IcyReader when changing or stopping streams</li>
<li>Fixed metadata overwrite bug where valid ICY stream metadata was cleared</li>
<li>Fixed DBus crash under KDE Plasma Wayland</li>
<li>Fixed regex parser bug with stream titles containing apostrophes</li>
<li>Fixed infinite loading of radio stations by adding transfer timeout</li>
<li>Added single instance check via DBus</li>
<li>Added SPDX license identifiers and relicensed to GPL-3.0-or-later</li>
</ul>
</description>
</release>
<release version="1.0.1" date="2026-05-23">
<description>
<ul>

View File

@@ -22,7 +22,7 @@ int main(int argc, char *argv[])
QApplication::setApplicationName(QStringLiteral("BearWave"));
QApplication::setDesktopFileName(QStringLiteral("de.nerdbear.bearwave"));
QApplication::setOrganizationName(QStringLiteral("BearWave"));
QApplication::setApplicationVersion(QStringLiteral("1.0.1"));
QApplication::setApplicationVersion(QStringLiteral("1.0.2"));
QApplication app(argc, argv);