diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 37fcefa..8d7e5f1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.0.0" + ".": "1.0.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a06808f..edf9888 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.0.1](https://github.com/pythoninthegrasses/mt/compare/v1.0.0...v1.0.1) (2026-02-21) + + +### Bug Fixes + +* **ci:** add libasound2-dev for Linux and fix macOS keychain search list ([5151e62](https://github.com/pythoninthegrasses/mt/commit/5151e62fba20d222400c3e7385ee68b6e22443c5)) +* **ci:** resolve release build failures on macOS, Linux amd64, and Linux ARM64 ([5d919af](https://github.com/pythoninthegrasses/mt/commit/5d919af811bef5bffbdb3b8ac77b95d5fb6705b4)) +* **ci:** skip Tauri DMG bundling on macOS, create DMG with hdiutil ([f702934](https://github.com/pythoninthegrasses/mt/commit/f7029340c4670d4cbdbe39d4a6ede1307c3bff13)) + ## [1.0.0](https://github.com/pythoninthegrasses/mt/compare/v0.1.0...v1.0.0) (2026-02-21) diff --git a/app/frontend/package.json b/app/frontend/package.json index 6f78c9b..8038e3a 100644 --- a/app/frontend/package.json +++ b/app/frontend/package.json @@ -1,6 +1,6 @@ { "name": "mt-frontend", - "version": "1.0.0", + "version": "1.0.1", "private": true, "type": "module", "scripts": { diff --git a/crates/mt-tauri/Cargo.toml b/crates/mt-tauri/Cargo.toml index dbc4a5c..81797ee 100644 --- a/crates/mt-tauri/Cargo.toml +++ b/crates/mt-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mt-tauri" -version = "1.0.0" +version = "1.0.1" description = "Desktop music player for large collections" authors = ["pythoninthegrass"] edition = "2024" diff --git a/crates/mt-tauri/tauri.conf.json b/crates/mt-tauri/tauri.conf.json index efbee21..3a06ed5 100644 --- a/crates/mt-tauri/tauri.conf.json +++ b/crates/mt-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "mt", - "version": "1.0.0", + "version": "1.0.1", "identifier": "com.mt.desktop", "build": { "beforeDevCommand": "npm --prefix ../../app/frontend run dev",