diff --git a/shpool-protocol/src/lib.rs b/shpool-protocol/src/lib.rs index 2d7e52fc..0da25fc3 100644 --- a/shpool-protocol/src/lib.rs +++ b/shpool-protocol/src/lib.rs @@ -18,7 +18,10 @@ use anyhow::anyhow; use clap::ValueEnum; use serde_derive::{Deserialize, Serialize}; -pub const VERSION: &str = env!("CARGO_PKG_VERSION"); +// We hardcode the version string to be able to track wire protocol +// compatibility seperately from rust API compat. For example, adding +// a new field is wire compatible, but not rust compatible. +pub const VERSION: &str = "0.4.3"; /// The header used to advertize daemon version. ///