From 8e1c607db5966864d685ae10f9884dd8fd1cb254 Mon Sep 17 00:00:00 2001 From: pythoninthegrass <4097471+pythoninthegrass@users.noreply.github.com> Date: Sun, 12 Apr 2026 00:16:31 -0500 Subject: [PATCH] chore(main): release 1.4.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 16 ++++++++++++++++ app/frontend/package.json | 2 +- crates/mt-tauri/Cargo.toml | 2 +- crates/mt-tauri/tauri.conf.json | 2 +- 5 files changed, 20 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 96f1cd94..4c313f93 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.3.0" + ".": "1.4.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c95bd4e1..74a63578 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [1.4.0](https://github.com/pythoninthegrasses/mt/compare/v1.3.0...v1.4.0) (2026-04-12) + + +### Features + +* **ci:** containerize macOS self-hosted runner ([6cdd7f4](https://github.com/pythoninthegrasses/mt/commit/6cdd7f417364e0e607e15ce3de9247a3ce3fe5f6)) + + +### Bug Fixes + +* **ci:** add rustfmt/clippy components, fix Windows npm path ([10a20ee](https://github.com/pythoninthegrasses/mt/commit/10a20ee3635ec38de310e2ffc6f55d346e6f73fe)) +* **ci:** harden Playwright tests, fix Windows backslash in Task templates ([07f722a](https://github.com/pythoninthegrasses/mt/commit/07f722a42413dd07349bf1d91874beb9a2265826)) +* **ci:** make Windows Defender exclusions non-fatal ([790bbd7](https://github.com/pythoninthegrasses/mt/commit/790bbd7a9c1daf7025a261fc4dab4b7cf1ec5174)) +* **ci:** resolve clippy errors, switch to GitHub-hosted runners ([e2b8916](https://github.com/pythoninthegrasses/mt/commit/e2b8916d702a44baa2272ab4dbd1872366cd109f)) +* **docker:** correct binary name in artifacts COPY ([962c129](https://github.com/pythoninthegrasses/mt/commit/962c129f5c5408016a6ab8c40be9dfc085bbd280)) + ## [1.3.0](https://github.com/pythoninthegrasses/mt/compare/v1.2.4...v1.3.0) (2026-04-04) diff --git a/app/frontend/package.json b/app/frontend/package.json index 854d23f1..7e613ef8 100644 --- a/app/frontend/package.json +++ b/app/frontend/package.json @@ -1,6 +1,6 @@ { "name": "mt-frontend", - "version": "1.3.0", + "version": "1.4.0", "private": true, "type": "module", "scripts": { diff --git a/crates/mt-tauri/Cargo.toml b/crates/mt-tauri/Cargo.toml index d3bd1366..afd45a9d 100644 --- a/crates/mt-tauri/Cargo.toml +++ b/crates/mt-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mt-tauri" -version = "1.3.2" +version = "1.4.0" 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 d541e951..3d29b20a 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.3.2", + "version": "1.4.0", "identifier": "com.mt.desktop", "build": { "beforeDevCommand": "npm --prefix ../../app/frontend run dev",