From a793a56812d504f7f939b28de3c39c2622a3f789 Mon Sep 17 00:00:00 2001 From: Alexey Zhokhov Date: Mon, 15 Jun 2026 11:19:55 +0000 Subject: [PATCH 1/2] chore: set preview dev version Signed-off-by: Alexey Zhokhov Co-authored-by: Codex --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b5c2caa..bb9d1c1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -686,7 +686,7 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "holla-cli" -version = "1.0.0" +version = "0.1.0-dev" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 0b2c62c..ca7c100 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "holla-cli" -version = "1.0.0" +version = "0.1.0-dev" build = "build.rs" edition = "2024" description = "Adaptive dev environment CLI — adapts to what you have installed" From 14eb9a8ae84f6094f858dda70f86f3682fef77f5 Mon Sep 17 00:00:00 2001 From: Alexey Zhokhov Date: Mon, 15 Jun 2026 11:21:48 +0000 Subject: [PATCH 2/2] fix: rustfmt holla build script Signed-off-by: Alexey Zhokhov Co-authored-by: Codex --- build.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.rs b/build.rs index fc1bbbb..6645c21 100644 --- a/build.rs +++ b/build.rs @@ -7,7 +7,8 @@ fn main() { println!("cargo:rerun-if-changed=.git/packed-refs"); let version = std::env::var("HOLLA_VERSION_OVERRIDE").unwrap_or_else(|_| { - let cargo_version = std::env::var("CARGO_PKG_VERSION").unwrap_or_else(|_| "0.0.0".to_owned()); + let cargo_version = + std::env::var("CARGO_PKG_VERSION").unwrap_or_else(|_| "0.0.0".to_owned()); let short_sha = Command::new("git") .args(["rev-parse", "--short=7", "HEAD"]) .output()