From 972129536f650faf7a2a923f73a45bf9cc715247 Mon Sep 17 00:00:00 2001 From: J / Jacob Babich Date: Sat, 5 Oct 2024 03:01:41 -0400 Subject: [PATCH] chore: change `Hello, world!` to `What's up world?` to allow me to cut a release --- cli-clap/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli-clap/src/lib.rs b/cli-clap/src/lib.rs index 1cefad2..8f68520 100644 --- a/cli-clap/src/lib.rs +++ b/cli-clap/src/lib.rs @@ -1,4 +1,4 @@ pub fn main() { #[cfg(feature = "tracing")] - tracing::info!("Hello, world!"); + tracing::info!("What's up, world?"); }