Skip to content

Commit

Permalink
bump git2 dependency to 0.19
Browse files Browse the repository at this point in the history
This means we no longer drop trailing "." in author names, so the cache version has to change.
  • Loading branch information
RalfJung committed Aug 1, 2024
1 parent 0330540 commit 168f6e8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ tempfile = "3.10.1"

[workspace.dependencies.git2]
default-features = false
version = "0.18.3"
version = "0.19"

[workspace.dependencies.juniper]
version = "0.15.11"
Expand Down
2 changes: 1 addition & 1 deletion josh-core/src/cache.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use super::*;
use std::collections::HashMap;

const CACHE_VERSION: u64 = 19;
const CACHE_VERSION: u64 = 20;

lazy_static! {
static ref DB: std::sync::Mutex<Option<sled::Db>> = std::sync::Mutex::new(None);
Expand Down

0 comments on commit 168f6e8

Please sign in to comment.