From 8c42218796329eb48c9d50c93b5db8aba776310a Mon Sep 17 00:00:00 2001 From: Laura Abbott Date: Tue, 26 Mar 2024 11:07:11 -0400 Subject: [PATCH] Don't set a default VERS The default caboose version is currently `0.0.0-git`. This is a mostly meaningless placeholder. Remove it so we have no version to access until we have properly signed and versioned a build. --- build/xtask/src/dist.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/xtask/src/dist.rs b/build/xtask/src/dist.rs index fd01f977f..0a4b813b6 100644 --- a/build/xtask/src/dist.rs +++ b/build/xtask/src/dist.rs @@ -609,7 +609,7 @@ pub fn package( // The Git hash is included in the default caboose under the key // `GITC`, so we don't include it in the pseudo-version. archive - .write_default_caboose(Some(&"0.0.0-git".to_owned())) + .write_default_caboose(None) .context("writing caboose into archive")?; archive.overwrite().context("overwriting archive")?; }