release: v0.7.1

This commit is contained in:
Ogulcan Celik 2026-06-24 16:27:01 +03:00
parent bae1f14d3b
commit 23b96e48c3
4 changed files with 6 additions and 2 deletions

View File

@ -2,6 +2,8 @@
## Unreleased
## [0.7.1] - 2026-06-24
### Added
- Added `[update].version_check` and `[update].manifest_check` so background Herdr version checks and remote agent-detection manifest checks can be disabled independently. Manual `herdr update` and bundled/local detection manifests still work when the background checks are disabled. (#677)
- Added `HERDR_AGENT=<agent>` as a Linux foreground-process hint for agents hidden behind wrappers such as VMs, Bubblewrap, or `fence`, allowing Herdr to use the named agent's screen manifest when `/proc` cannot expose the real command. (#679)

2
Cargo.lock generated
View File

@ -537,7 +537,7 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
[[package]]
name = "herdr"
version = "0.7.0"
version = "0.7.1"
dependencies = [
"base64",
"bincode",

View File

@ -1,6 +1,6 @@
[package]
name = "herdr"
version = "0.7.0"
version = "0.7.1"
edition = "2021"
build = "build.rs"
description = "terminal workspace manager for AI coding agents"

View File

@ -2,6 +2,8 @@
## Unreleased
## [0.7.1] - 2026-06-24
### Added
- Added `[update].version_check` and `[update].manifest_check` so background Herdr version checks and remote agent-detection manifest checks can be disabled independently. Manual `herdr update` and bundled/local detection manifests still work when the background checks are disabled. (#677)
- Added `HERDR_AGENT=<agent>` as a Linux foreground-process hint for agents hidden behind wrappers such as VMs, Bubblewrap, or `fence`, allowing Herdr to use the named agent's screen manifest when `/proc` cannot expose the real command. (#679)