Compare commits

...

2 commits

Author SHA1 Message Date
77bf9c584b
chore: release 0.2.4
All checks were successful
Continuous Integration / Lint, Check & Test (push) Successful in 2m28s
Continuous Integration / Build Package (push) Successful in 3m2s
Release / Build and Release (push) Successful in 4m26s
2026-04-13 20:15:28 +02:00
ab2fc823e8
feat: streamd daily is now default instead of streamd new 2026-04-13 20:09:09 +02:00
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.3" version = "0.2.4"
dependencies = [ dependencies = [
"chrono", "chrono",
"chrono-tz", "chrono-tz",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "streamd" name = "streamd"
version = "0.2.3" version = "0.2.4"
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::new::run()?, None => streamd::cli::commands::daily::run(None)?,
} }
Ok(()) Ok(())