diff --git a/CHANGELOG.md b/CHANGELOG.md index 21debeb..6bcb952 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.0] - 10-21-2024 +- Add instructions for use with [integer32llc/Margo](https://github.com/integer32llc/margo) +- Add `--git-index-url` to configure mirror `config.json` [#95](https://github.com/wcampbell0x2a/zerus/pull/95) +- Add check of status code when downloading [#97](https://github.com/wcampbell0x2a/zerus/pull/97) +- Add better message for not finding `Cargo.toml` [#96](https://github.com/wcampbell0x2a/zerus/pull/96) + +### Dependencies +- Bump clap from 4.5.9 to 4.5.20 +- Bump git2 from 0.18.3 to 0.19.0 +- Bump anyhow from 1.0.82 to 1.0.90 +- Bump reqwest from 0.12.3 to 0.12.8 + ## [0.9.0] - 10-12-2024 - Add support for latest nightly - Add `--skip-git-index` to not download git index crates.io diff --git a/Cargo.lock b/Cargo.lock index 4aa1aa2..89f909b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1802,7 +1802,7 @@ checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" [[package]] name = "zerus" -version = "0.9.0" +version = "0.10.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index a2603e4..7b31465 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zerus" -version = "0.9.0" +version = "0.10.0" edition = "2021" authors = ["wcampbell"] description = "Lightweight binary to download only project required crates for offline crates.io mirror" @@ -9,6 +9,7 @@ readme = "README.md" homepage = "https://github.com/wcampbell0x2a/zerus" repository = "https://github.com/wcampbell0x2a/zerus" categories = ["development-tools"] +keywords = ["offline", "mirror", "crates", "download", "vendor"] [dependencies] clap = { version = "4.5.13", features = ["derive"] }