Version bumped in all five places (core/cli/tauri-app Cargo.toml, tauri.conf.json, Android versionName + versionCode 8000). download.html carries the v0.8.0-alpha release block: registry + greeting comments as the headline, the manifest privacy fix and persona-split bug family, comment ingest verification, and the protocol slimming. States plainly that v0.8 cannot talk to v0.7.x and the anchor moves with it. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LGiPD2cF75mnvneSCjdDC5
16 lines
327 B
TOML
16 lines
327 B
TOML
[package]
|
|
name = "itsgoin-cli"
|
|
version = "0.8.0-alpha"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "itsgoin"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
itsgoin-core = { path = "../core" }
|
|
tokio = { version = "1", features = ["full"] }
|
|
anyhow = "1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
hex = "0.4"
|