From 8f3e265e23b7aa1421069f0469b4fd021a402115 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 8 Sep 2026 01:53:00 +0000 Subject: [PATCH 1/2] chore(main): release 0.22.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ maestro-protocol/Cargo.toml | 2 +- maestro-server/Cargo.toml | 2 +- package.json | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 11 ++++++++--- 7 files changed, 26 insertions(+), 8 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 79a8d4c4..2982c68d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{ ".": "0.21.0" } +{".":"0.22.0"} diff --git a/CHANGELOG.md b/CHANGELOG.md index ab6e55be..7cd6eac5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.22.0](https://github.com/emdgroup/maestro/compare/v0.21.0...v0.22.0) (2026-09-08) + + +### Features + +* answer a plan review from the stream ([#335](https://github.com/emdgroup/maestro/issues/335)) ([7513b71](https://github.com/emdgroup/maestro/commit/7513b71a8623225cf53a7109c074d505dbfe069d)) +* reduce the CPU cost of the accent bubble animation ([#330](https://github.com/emdgroup/maestro/issues/330)) ([87e2848](https://github.com/emdgroup/maestro/commit/87e284882191124dd7376abc0b1d460bb854ffeb)) + + +### Bug Fixes + +* send session notifications on Windows ([#320](https://github.com/emdgroup/maestro/issues/320)) ([7672b8b](https://github.com/emdgroup/maestro/commit/7672b8b33426b57ad9fc59da5748e4d652770129)) + ## [0.21.0](https://github.com/emdgroup/maestro/compare/v0.20.0...v0.21.0) (2026-09-02) ### Features diff --git a/maestro-protocol/Cargo.toml b/maestro-protocol/Cargo.toml index a8e625a3..9ba533ba 100644 --- a/maestro-protocol/Cargo.toml +++ b/maestro-protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "maestro-protocol" -version = "0.21.0" +version = "0.22.0" edition = "2021" [dependencies] diff --git a/maestro-server/Cargo.toml b/maestro-server/Cargo.toml index b10f56ae..f34f316d 100644 --- a/maestro-server/Cargo.toml +++ b/maestro-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "maestro-server" -version = "0.21.0" +version = "0.22.0" edition = "2021" description = "Maestro remote headless server — spawns ACP agents on SSH hosts" license = "Apache-2.0" diff --git a/package.json b/package.json index 40b2fa62..965d8491 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "maestro", - "version": "0.21.0", + "version": "0.22.0", "private": true, "license": "Apache-2.0", "type": "module", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 2d6a8900..1bdae7df 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "maestro" -version = "0.21.0" +version = "0.22.0" description = "Maestro: AI Agent Orchestration for Autonomous Coding" authors = ["you"] license = "Apache-2.0" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 6f4e9eee..ba871c6f 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": "Maestro", - "version": "0.21.0", + "version": "0.22.0", "identifier": "com.maestro.app", "build": { "beforeDevCommand": "bun run dev --host", @@ -23,7 +23,10 @@ ], "security": { "csp": "default-src 'self'; script-src 'self' 'unsafe-inline' https: blob:; frame-src 'self' blob:; style-src 'self' 'unsafe-inline' https:; img-src 'self' data: blob: https:; connect-src 'self' ipc: http://ipc.localhost http://127.0.0.1 https:; font-src 'self' data: https:", - "dangerousDisableAssetCspModification": ["script-src", "style-src"] + "dangerousDisableAssetCspModification": [ + "script-src", + "style-src" + ] } }, "bundle": { @@ -47,7 +50,9 @@ "plugins": { "updater": { "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDJEQTNCMTJERTE2N0JCQUUKUldTdXUyZmhMYkdqTGZHTjBwVEU0UHhNM2xpKzBHc28za0xRZ1lqZEoycTFTTXBoUHg4TzNabDEK", - "endpoints": ["https://github.com/emdgroup/maestro/releases/latest/download/latest.json"], + "endpoints": [ + "https://github.com/emdgroup/maestro/releases/latest/download/latest.json" + ], "windows": { "installMode": "passive" } From c781d123b3372f6d4be607b641a2a0774187e164 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 8 Sep 2026 01:53:20 +0000 Subject: [PATCH 2/2] ci: refresh generated files --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 +++----- Cargo.lock | 6 +++--- src-tauri/tauri.conf.json | 9 ++------- 4 files changed, 9 insertions(+), 16 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2982c68d..970dafbf 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.22.0"} +{ ".": "0.22.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7cd6eac5..164d2c33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,16 +2,14 @@ ## [0.22.0](https://github.com/emdgroup/maestro/compare/v0.21.0...v0.22.0) (2026-09-08) - ### Features -* answer a plan review from the stream ([#335](https://github.com/emdgroup/maestro/issues/335)) ([7513b71](https://github.com/emdgroup/maestro/commit/7513b71a8623225cf53a7109c074d505dbfe069d)) -* reduce the CPU cost of the accent bubble animation ([#330](https://github.com/emdgroup/maestro/issues/330)) ([87e2848](https://github.com/emdgroup/maestro/commit/87e284882191124dd7376abc0b1d460bb854ffeb)) - +- answer a plan review from the stream ([#335](https://github.com/emdgroup/maestro/issues/335)) ([7513b71](https://github.com/emdgroup/maestro/commit/7513b71a8623225cf53a7109c074d505dbfe069d)) +- reduce the CPU cost of the accent bubble animation ([#330](https://github.com/emdgroup/maestro/issues/330)) ([87e2848](https://github.com/emdgroup/maestro/commit/87e284882191124dd7376abc0b1d460bb854ffeb)) ### Bug Fixes -* send session notifications on Windows ([#320](https://github.com/emdgroup/maestro/issues/320)) ([7672b8b](https://github.com/emdgroup/maestro/commit/7672b8b33426b57ad9fc59da5748e4d652770129)) +- send session notifications on Windows ([#320](https://github.com/emdgroup/maestro/issues/320)) ([7672b8b](https://github.com/emdgroup/maestro/commit/7672b8b33426b57ad9fc59da5748e4d652770129)) ## [0.21.0](https://github.com/emdgroup/maestro/compare/v0.20.0...v0.21.0) (2026-09-02) diff --git a/Cargo.lock b/Cargo.lock index ae3db07e..c9d8579a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3732,7 +3732,7 @@ dependencies = [ [[package]] name = "maestro" -version = "0.21.0" +version = "0.22.0" dependencies = [ "aes-gcm", "base64 0.23.1", @@ -3780,7 +3780,7 @@ dependencies = [ [[package]] name = "maestro-protocol" -version = "0.21.0" +version = "0.22.0" dependencies = [ "base64 0.23.1", "serde", @@ -3790,7 +3790,7 @@ dependencies = [ [[package]] name = "maestro-server" -version = "0.21.0" +version = "0.22.0" dependencies = [ "agent-client-protocol", "agent-client-protocol-schema", diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index ba871c6f..4d8070bd 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -23,10 +23,7 @@ ], "security": { "csp": "default-src 'self'; script-src 'self' 'unsafe-inline' https: blob:; frame-src 'self' blob:; style-src 'self' 'unsafe-inline' https:; img-src 'self' data: blob: https:; connect-src 'self' ipc: http://ipc.localhost http://127.0.0.1 https:; font-src 'self' data: https:", - "dangerousDisableAssetCspModification": [ - "script-src", - "style-src" - ] + "dangerousDisableAssetCspModification": ["script-src", "style-src"] } }, "bundle": { @@ -50,9 +47,7 @@ "plugins": { "updater": { "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDJEQTNCMTJERTE2N0JCQUUKUldTdXUyZmhMYkdqTGZHTjBwVEU0UHhNM2xpKzBHc28za0xRZ1lqZEoycTFTTXBoUHg4TzNabDEK", - "endpoints": [ - "https://github.com/emdgroup/maestro/releases/latest/download/latest.json" - ], + "endpoints": ["https://github.com/emdgroup/maestro/releases/latest/download/latest.json"], "windows": { "installMode": "passive" }