diff --git a/CHANGELOG.md b/CHANGELOG.md index eae1f7c0..2a27d6a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.3] - 2026-03-11 + +### Fixed +- **CI/CD Build**: Added `libunwind-dev` to the release workflow to solve build issues. + ## [1.0.2] - 2026-03-11 ### Fixed -- **Linux AppImage**: Integrated GStreamer bundling fix in CI/CD workflow to ensure audio playback works on systems without pre-installed GStreamer plugins (e.g., Arch, CachyOS). -- **CI/CD Reliability**: Set `APPIMAGE_EXTRACT_AND_RUN=1` to prevent FUSE-related issues during the AppImage build process. +- **Linux AppImage**: Integrated GStreamer bundling fix in CI/CD workflow. +- **CI/CD Reliability**: Set `APPIMAGE_EXTRACT_AND_RUN=1` to prevent FUSE-related issues. ## [1.0.1] - 2026-03-11 diff --git a/package.json b/package.json index 57e51016..c73256c8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "psysonic", - "version": "1.0.2", + "version": "1.0.3", "private": true, "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 4577c99f..9af87d8b 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "psysonic" -version = "1.0.2" +version = "1.0.3" description = "Psysonic Desktop Music Player" authors = [] license = "" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index b90ad82c..75c31e3d 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "Psysonic", - "version": "1.0.2", + "version": "1.0.3", "identifier": "dev.psysonic.app", "build": { "beforeDevCommand": "npm run dev",