Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions Cargo.lock

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

5 changes: 5 additions & 0 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,8 @@ lint:

watch:
cargo watch -x "nextest run"

update:
nix flake update
cargo update
pre-commit autoupdate
6 changes: 3 additions & 3 deletions flake.lock

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

8 changes: 4 additions & 4 deletions src/infra/scanner_binary_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pub(super) struct ScannerBinaryManager {}

impl ScannerBinaryManager {
const fn version(&self) -> Version {
Version::new(1, 22, 1)
Version::new(1, 22, 2)
}

pub async fn install_expected_version_if_not_present(
Expand Down Expand Up @@ -194,7 +194,7 @@ mod tests {
async fn it_gets_the_wanted_version() {
let mgr = ScannerBinaryManager::default();

assert_eq!(mgr.version().to_string(), "1.22.1");
assert_eq!(mgr.version().to_string(), "1.22.2");
}

#[tokio::test]
Expand Down Expand Up @@ -234,7 +234,7 @@ mod tests {
.await
.unwrap()
.to_string(),
"1.22.1"
"1.22.2"
);
}

Expand All @@ -257,7 +257,7 @@ mod tests {
.await
.unwrap()
.to_string(),
"1.22.1"
"1.22.2"
);
}
}