diff --git a/.announcements/git-no-remote.json b/.announcements/git-no-remote.json deleted file mode 100644 index b679d01ef..000000000 --- a/.announcements/git-no-remote.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "items": [ - { - "text": "Open project now works on local git repositories with no remote." - } - ] -} diff --git a/.changeset/background-subagent-resume.md b/.changeset/background-subagent-resume.md deleted file mode 100644 index 6ad431b9f..000000000 --- a/.changeset/background-subagent-resume.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"helmor": patch ---- - -Fix Claude turns ending prematurely after a subagent is moved to the background — the main agent now stays paused and resumes once the background task completes. diff --git a/.changeset/bump-bundled-agents.md b/.changeset/bump-bundled-agents.md deleted file mode 100644 index 5391de9a9..000000000 --- a/.changeset/bump-bundled-agents.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"helmor": patch ---- - -Update the bundled Claude Code, Cursor, OpenCode, and Kimi coding agents to their latest versions. diff --git a/.changeset/git-no-remote-support.md b/.changeset/git-no-remote-support.md deleted file mode 100644 index 198058898..000000000 --- a/.changeset/git-no-remote-support.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"helmor": minor ---- - -Support local git repositories that have no remote, including worktree workspaces. - -- Open a git repo with no remote configured — branches, diffs, commits, and worktrees all work, with the default branch read from local HEAD. -- Push, pull, fetch, pull requests, and the forge Connect prompts are hidden for these local-only repos; repo settings show a "Local-only repository" notice and a local-branch picker. diff --git a/.changeset/hide-inert-slash-commands.md b/.changeset/hide-inert-slash-commands.md deleted file mode 100644 index 6ea49bce8..000000000 --- a/.changeset/hide-inert-slash-commands.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"helmor": patch ---- - -Hide the `/compact` (Claude) and `/clear` (all agents) slash commands, which showed up in the command menu but did nothing when run. diff --git a/CHANGELOG.md b/CHANGELOG.md index fea0afe16..789d0e2c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## 0.44.0 + +### Minor Changes + +- [#896](https://github.com/dohooo/helmor/pull/896) [`d172b5b`](https://github.com/dohooo/helmor/commit/d172b5bbb37270f3e9bb2eb8251011d057076b91) Thanks [@natllian](https://github.com/natllian)! - Support local git repositories that have no remote, including worktree workspaces. + + - Open a git repo with no remote configured — branches, diffs, commits, and worktrees all work, with the default branch read from local HEAD. + - Push, pull, fetch, pull requests, and the forge Connect prompts are hidden for these local-only repos; repo settings show a "Local-only repository" notice and a local-branch picker. + +### Patch Changes + +- [#897](https://github.com/dohooo/helmor/pull/897) [`fe6108d`](https://github.com/dohooo/helmor/commit/fe6108d1ca42b7b637234e698c25b83aae62da7a) Thanks [@natllian](https://github.com/natllian)! - Fix Claude turns ending prematurely after a subagent is moved to the background — the main agent now stays paused and resumes once the background task completes. + +- [#900](https://github.com/dohooo/helmor/pull/900) [`ba5cee8`](https://github.com/dohooo/helmor/commit/ba5cee89b44ce0f3edf98dcdf4da561c9bcd3b7b) Thanks [@dohooo](https://github.com/dohooo)! - Update the bundled Claude Code, Cursor, OpenCode, and Kimi coding agents to their latest versions. + +- [#898](https://github.com/dohooo/helmor/pull/898) [`ebf63e4`](https://github.com/dohooo/helmor/commit/ebf63e4c534bf1f9a74c1235f7161d1b3436b09c) Thanks [@natllian](https://github.com/natllian)! - Hide the `/compact` (Claude) and `/clear` (all agents) slash commands, which showed up in the command menu but did nothing when run. + ## 0.43.0 ### Minor Changes diff --git a/package.json b/package.json index 5f9e2dc3c..e5e3eebb3 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "helmor", "description": "The local-first IDE for coding agent orchestration.", "private": true, - "version": "0.43.0", + "version": "0.44.0", "packageManager": "bun@1.3.2", "type": "module", "workspaces": [ diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 71fa2003b..761868367 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -2112,7 +2112,7 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" [[package]] name = "helmor" -version = "0.43.0" +version = "0.44.0" dependencies = [ "aes", "anyhow", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 274422a3c..8b00e8883 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "helmor" -version = "0.43.0" +version = "0.44.0" description = "The local-first IDE for coding agent orchestration." authors = ["Caspian Zhao", "Nathan Lian"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index df5261c7b..ae6bf4012 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": "Helmor", - "version": "0.43.0", + "version": "0.44.0", "identifier": "ai.helmor.desktop", "build": { "beforeDevCommand": "bun x vite", diff --git a/src/features/announcements/release-announcement-catalog.json b/src/features/announcements/release-announcement-catalog.json index a385be475..2376f5279 100644 --- a/src/features/announcements/release-announcement-catalog.json +++ b/src/features/announcements/release-announcement-catalog.json @@ -1,6 +1,14 @@ { "_readme": "AUTO-GENERATED from .announcements during `bun run release:version`. Each item is one released version's in-app announcement. Do not edit released entries by hand.", "items": [ + { + "releaseVersion": "0.44.0", + "items": [ + { + "text": "Open project now works on local git repositories with no remote." + } + ] + }, { "releaseVersion": "0.43.0", "items": [