diff --git a/Cargo.lock b/Cargo.lock index 8aa8e75..16fcbfe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -787,7 +787,7 @@ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e" [[package]] name = "streamd" -version = "0.2.4" +version = "0.2.3" dependencies = [ "chrono", "chrono-tz", diff --git a/Cargo.toml b/Cargo.toml index dc2b964..c8cbad1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "streamd" -version = "0.2.4" +version = "0.2.3" edition = "2021" description = "Personal knowledge management and time-tracking CLI using @Tag annotations" license = "AGPL-3.0-only" diff --git a/src/main.rs b/src/main.rs index 8406385..eaa4c91 100644 --- a/src/main.rs +++ b/src/main.rs @@ -22,7 +22,7 @@ fn main() -> miette::Result<()> { Some(Commands::Completions { shell }) => { streamd::cli::commands::completions::run(shell); } - None => streamd::cli::commands::daily::run(None)?, + None => streamd::cli::commands::new::run()?, } Ok(())