diff --git a/CHANGELOG.md b/CHANGELOG.md index 916fe80..ec1245c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/CMakeLists.txt b/CMakeLists.txt index 6be86b5..a3e3071 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/de.nerdbear.bearwave.metainfo.xml b/de.nerdbear.bearwave.metainfo.xml index c9f6f5a..e68e593 100644 --- a/de.nerdbear.bearwave.metainfo.xml +++ b/de.nerdbear.bearwave.metainfo.xml @@ -59,6 +59,19 @@ + + +
    +
  • Fixed crash in IcyReader when changing or stopping streams
  • +
  • Fixed metadata overwrite bug where valid ICY stream metadata was cleared
  • +
  • Fixed DBus crash under KDE Plasma Wayland
  • +
  • Fixed regex parser bug with stream titles containing apostrophes
  • +
  • Fixed infinite loading of radio stations by adding transfer timeout
  • +
  • Added single instance check via DBus
  • +
  • Added SPDX license identifiers and relicensed to GPL-3.0-or-later
  • +
+
+
    diff --git a/src/main.cpp b/src/main.cpp index ccd3ad0..0a5f968 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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);