Skip to content

Commit

Permalink
chore(cache): update feed defaults to include CVEs from 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Apr 22, 2024
1 parent a2a4c15 commit c340ab6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ impl CacheConfig {

/// Create a new ``CacheConfig`` with some reasonable defaults.
pub fn new() -> Self {
let mut feeds: Vec<String> = (2002..2022).into_iter().map(|x| x.to_string()).collect();
let mut feeds: Vec<String> = (2002..=2024).into_iter().map(|x| x.to_string()).collect();
feeds.push("recent".to_string());
feeds.push("modified".to_string());
Self {
Expand Down

0 comments on commit c340ab6

Please sign in to comment.