From 8e70b49ce62409a364b72d456174b968ac3d770f Mon Sep 17 00:00:00 2001 From: pythoninthegrass <4097471+pythoninthegrass@users.noreply.github.com> Date: Tue, 31 Mar 2026 00:40:47 -0500 Subject: [PATCH] chore(main): release 1.2.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 17 +++++++++++++++++ app/frontend/package.json | 2 +- crates/mt-tauri/Cargo.toml | 2 +- crates/mt-tauri/tauri.conf.json | 2 +- 5 files changed, 21 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5fdd883..c3f1463 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.1.0" + ".": "1.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ff29b24..b31e626 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [1.2.0](https://github.com/pythoninthegrasses/mt/compare/v1.1.0...v1.2.0) (2026-03-31) + + +### Features + +* add context menu to now playing view ([a6b5850](https://github.com/pythoninthegrasses/mt/commit/a6b5850dd93b48fd2d59785f2e9339e30384443d)) + + +### Bug Fixes + +* **ci:** resolve cargo fmt failures and bump GHA actions to Node 24 ([c06ca35](https://github.com/pythoninthegrasses/mt/commit/c06ca35504b280c84692265347fe48cdb72f8565)) +* **keyboard:** prevent space from toggling play/pause during type-to-jump ([5195080](https://github.com/pythoninthegrasses/mt/commit/519508050680565fe361e743dab2a06bfe6d996a)) +* **now-playing:** prevent long lyrics from pushing queue panel off viewport ([67c292b](https://github.com/pythoninthegrasses/mt/commit/67c292b5bdcd0e65ad7e6e7eec847c064fd24c59)) +* **queue:** resolve shuffle, remove, and Play Next queue bugs ([49b1515](https://github.com/pythoninthegrasses/mt/commit/49b15159519ef0324e677dcdf4ceca26eb667eeb)) +* resolve merge conflict in .serena/project.yml ([e97f9e8](https://github.com/pythoninthegrasses/mt/commit/e97f9e86e9f3172c1050d5bf4281853a8ff07127)) +* **theme:** add search field contrast for metro-teal and neon-love themes ([37a60ad](https://github.com/pythoninthegrasses/mt/commit/37a60ad3cb6dd8c215eb864299641de3fc7a0665)) + ## [1.1.0](https://github.com/pythoninthegrasses/mt/compare/v1.0.0...v1.1.0) (2026-03-27) diff --git a/app/frontend/package.json b/app/frontend/package.json index 7633ec2..efb5dc3 100644 --- a/app/frontend/package.json +++ b/app/frontend/package.json @@ -1,6 +1,6 @@ { "name": "mt-frontend", - "version": "1.1.0", + "version": "1.2.0", "private": true, "type": "module", "scripts": { diff --git a/crates/mt-tauri/Cargo.toml b/crates/mt-tauri/Cargo.toml index 963bd18..d89be35 100644 --- a/crates/mt-tauri/Cargo.toml +++ b/crates/mt-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mt-tauri" -version = "1.1.0" +version = "1.2.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 44fe282..0566bd6 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.1.0", + "version": "1.2.0", "identifier": "com.mt.desktop", "build": { "beforeDevCommand": "npm --prefix ../../app/frontend run dev",