From a228ec82a31bff0bf3bba75395d8a844d17824ad Mon Sep 17 00:00:00 2001 From: kjuulh Date: Wed, 1 Jan 2025 22:01:49 +0100 Subject: [PATCH] chore: bump default cache duration to 7 days Signed-off-by: kjuulh --- crates/gitnow/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/gitnow/src/config.rs b/crates/gitnow/src/config.rs index 97d03e9..cbf9dd9 100644 --- a/crates/gitnow/src/config.rs +++ b/crates/gitnow/src/config.rs @@ -124,7 +124,7 @@ impl CacheDuration { impl Default for CacheDuration { fn default() -> Self { Self::Precise { - days: 1, + days: 7, hours: 0, minutes: 0, }