diff --git a/CHANGELOG.md b/CHANGELOG.md index 0009fa4..eef43e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v0.3.5 (2025-09-18) + + - Fixed support for Windows by switching from `xdg` crate to `dirs` crate for discovering the cache directory + ## v0.3.4 (2025-06-04) - Improved the message displayed when the latest data dump is considered outdated (contribution by @smoelius) diff --git a/Cargo.lock b/Cargo.lock index bd8cd86..2789113 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -74,7 +74,7 @@ dependencies = [ [[package]] name = "cargo-supply-chain" -version = "0.3.4" +version = "0.3.5" dependencies = [ "anyhow", "bpaf", diff --git a/Cargo.toml b/Cargo.toml index 6ddf4fd..52860b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-supply-chain" -version = "0.3.4" +version = "0.3.5" description = "Gather author, contributor, publisher data on crates in your dependency graph" repository = "https://github.com/rust-secure-code/cargo-supply-chain" authors = ["Andreas Molzer ", "Sergey \"Shnatsel\" Davidoff "]