mirror of
https://github.com/NanmiCoder/cc-haha
synced 2026-07-18 13:23:33 +08:00
The release note is now the GitHub Release source of truth, and the desktop version files have been moved together so the tag-triggered workflow can package the same version consistently. Constraint: release-desktop.yml reads release-notes/v0.1.8.md from the tagged commit Rejected: Push tag without a release commit | workflow requires version files and notes in the tag Confidence: high Scope-risk: narrow Reversibility: clean Directive: Keep the release notes filename aligned with the tag before pushing future releases Tested: bun run scripts/release.ts 0.1.8 --dry Tested: bun run scripts/release.ts 0.1.8 Not-tested: Remote GitHub Actions build before pushing the tag
23 lines
498 B
TOML
23 lines
498 B
TOML
[package]
|
|
name = "claude-code-desktop"
|
|
version = "0.1.8"
|
|
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 = [] }
|
|
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"
|