diff --git a/CHANGELOG.md b/CHANGELOG.md index 3918342..bbe6918 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## [v0.41.0](https://github.com/shuntaka9576/agentoast/compare/v0.40.0...v0.41.0) - 2026-05-01 +- feat: add gg/G keyboard shortcuts for top/bottom jump by @shuntaka9576 in https://github.com/shuntaka9576/agentoast/pull/238 + ## [v0.40.0](https://github.com/shuntaka9576/agentoast/compare/v0.39.2...v0.40.0) - 2026-04-29 - feat: detect Codex Plan mode from status bar by @shuntaka9576 in https://github.com/shuntaka9576/agentoast/pull/227 - feat: highlight active repo group with cyan ring by @shuntaka9576 in https://github.com/shuntaka9576/agentoast/pull/230 diff --git a/Cargo.lock b/Cargo.lock index 7e33d62..8d512e2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10,7 +10,7 @@ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" [[package]] name = "agentoast-app" -version = "0.40.0" +version = "0.41.0" dependencies = [ "agentoast-cli", "agentoast-shared", @@ -42,7 +42,7 @@ dependencies = [ [[package]] name = "agentoast-cli" -version = "0.40.0" +version = "0.41.0" dependencies = [ "agentoast-shared", "clap", @@ -53,7 +53,7 @@ dependencies = [ [[package]] name = "agentoast-shared" -version = "0.40.0" +version = "0.41.0" dependencies = [ "log", "rusqlite", diff --git a/Cargo.toml b/Cargo.toml index 84f325b..769aa4c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/agentoast-shared", "crates/agentoast-cli", "src-tauri"] resolver = "2" [workspace.package] -version = "0.40.0" +version = "0.41.0" [workspace.lints.clippy] all = { level = "warn", priority = -1 } diff --git a/package.json b/package.json index d69ebe8..93f2fa0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agentoast", - "version": "0.40.0", + "version": "0.41.0", "private": true, "type": "module", "scripts": { diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 86a3a10..ffaf005 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": "Agentoast", - "version": "0.40.0", + "version": "0.41.0", "identifier": "com.shuntaka.agentoast", "build": { "beforeDevCommand": "bun run dev",