mirror of
https://github.com/NanmiCoder/cc-haha
synced 2026-07-17 13:13:35 +08:00
The release collects the post-v0.1.8 desktop workspace manager work, provider compatibility fixes, WebSearch fallback support, and desktop lifecycle hardening into a tagged GitHub Actions release. Constraint: GitHub Release body is sourced from release-notes/v0.1.9.md in the tagged commit Constraint: The release script owns version bumps for desktop/package.json, Tauri config, Cargo.toml, and Cargo.lock Rejected: Push the script-generated generic release commit | it would violate the repository Lore commit protocol Confidence: high Scope-risk: narrow Directive: Do not move v0.1.9 without rerunning the release preflight and verifying the tag commit contains release-notes/v0.1.9.md Tested: bun run scripts/release.ts 0.1.9 --dry Tested: bun run scripts/release.ts 0.1.9 Tested: cd desktop/src-tauri && cargo check Not-tested: GitHub Actions release workflow before tag push
23 lines
509 B
TOML
23 lines
509 B
TOML
[package]
|
|
name = "claude-code-desktop"
|
|
version = "0.1.9"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "claude_code_desktop_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["tray-icon"] }
|
|
tauri-plugin-shell = "2"
|
|
tauri-plugin-dialog = "2"
|
|
tauri-plugin-process = "2"
|
|
tauri-plugin-updater = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
anyhow = "1.0.102"
|
|
portable-pty = "0.9.0"
|