release: assemble v0.9.11 non-benchmark candidate

This commit is contained in:
CodeWhale Bot
2026-08-21 17:30:56 -07:00
parent 64623274e7
commit 277cf21e7f
91 changed files with 3152 additions and 1258 deletions

View File

@@ -12,7 +12,11 @@ if grep -En 'YOLO|Multitask|/mode yolo|--yolo|Bypass' $docs; then
exit 1
fi
if grep -En 'YOLO|Multitask|Bypass' crates/tui/locales/*.json; then
# Locale message identifiers are internal compatibility names and may still
# contain retired terms (for example `PermissionsPostureBypass`). Inspect only
# the serialized user-facing value so the check enforces the contract above
# without flagging an allowed key.
if grep -En '": "[^"]*(YOLO|Multitask|Bypass)' crates/tui/locales/*.json; then
printf '%s\n' 'retired TUI vocabulary remains in localized product copy' >&2
exit 1
fi
@@ -28,8 +32,7 @@ if grep -En \
exit 1
fi
if grep -Ein 'bypass approvals|Act \+ bypass' \
crates/tui/src/tui/plan_prompt.rs crates/tui/src/tui/ui.rs; then
if grep -Ein 'bypass approvals|Act \+ bypass' crates/tui/src/tui/ui.rs; then
printf '%s\n' 'retired permission wording remains in live Plan UI' >&2
exit 1
fi

View File

@@ -20,7 +20,7 @@
# Uses prebuilt release binaries instead of a Rust build.
set -euo pipefail
RELEASE_TAG="${RELEASE_TAG:-v0.9.10}"
RELEASE_TAG="${RELEASE_TAG:-v0.9.11}"
REPO_URL="${REPO_URL:-https://github.com/Hmbown/CodeWhale.git}"
REPO_BRANCH="${REPO_BRANCH:-main}"
SECRETS_FILE="${SECRETS_FILE:-/tmp/cw-secrets.env}"