Compare commits

..

No commits in common. "77bf9c584bdbd4421444f4bb580f20622cca877b" and "6c8f1f525335cb9c1ee2553d214c944c8f4f97ad" have entirely different histories.

3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View file

@ -787,7 +787,7 @@ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
[[package]] [[package]]
name = "streamd" name = "streamd"
version = "0.2.4" version = "0.2.3"
dependencies = [ dependencies = [
"chrono", "chrono",
"chrono-tz", "chrono-tz",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "streamd" name = "streamd"
version = "0.2.4" version = "0.2.3"
edition = "2021" edition = "2021"
description = "Personal knowledge management and time-tracking CLI using @Tag annotations" description = "Personal knowledge management and time-tracking CLI using @Tag annotations"
license = "AGPL-3.0-only" license = "AGPL-3.0-only"

View file

@ -22,7 +22,7 @@ fn main() -> miette::Result<()> {
Some(Commands::Completions { shell }) => { Some(Commands::Completions { shell }) => {
streamd::cli::commands::completions::run(shell); streamd::cli::commands::completions::run(shell);
} }
None => streamd::cli::commands::daily::run(None)?, None => streamd::cli::commands::new::run()?,
} }
Ok(()) Ok(())