Phases 1-5 of the Identity Architecture rollout are on master; Phase 6 (rotating DM IDs) is deferred. This bumps the protocol-breaking release: v0.5 and v0.6 cannot interoperate. Packaging: - Cargo + tauri.conf: 0.5.3 -> 0.6.0 - deploy.sh: drop -beta filename suffix - download.html: single v0.6.0 section with fork notice at the top; changelog entry summarising the five phases and the schema migration; Phase 6's rotating-DM-ID status noted as deferred Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
16 lines
321 B
TOML
16 lines
321 B
TOML
[package]
|
|
name = "itsgoin-cli"
|
|
version = "0.6.0"
|
|
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"
|