diff --git a/Cargo.lock b/Cargo.lock index aa6dc999..3157b55e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -231,7 +231,7 @@ dependencies = [ [[package]] name = "binstalk" -version = "0.28.37" +version = "0.28.38" dependencies = [ "binstalk-bins", "binstalk-downloader", @@ -356,7 +356,7 @@ dependencies = [ [[package]] name = "binstalk-manifests" -version = "0.17.0" +version = "0.17.1" dependencies = [ "beef", "binstalk-types", @@ -986,7 +986,7 @@ dependencies = [ [[package]] name = "detect-targets" -version = "0.1.53" +version = "0.1.54" dependencies = [ "cfg-if", "guess_host_triple", diff --git a/crates/bin/Cargo.toml b/crates/bin/Cargo.toml index d454e619..c215e339 100644 --- a/crates/bin/Cargo.toml +++ b/crates/bin/Cargo.toml @@ -23,8 +23,8 @@ pkg-fmt = "zip" [dependencies] atomic-file-install = { version = "1.0.11", path = "../atomic-file-install" } -binstalk = { path = "../binstalk", version = "0.28.37", default-features = false } -binstalk-manifests = { path = "../binstalk-manifests", version = "0.17.0" } +binstalk = { path = "../binstalk", version = "0.28.38", default-features = false } +binstalk-manifests = { path = "../binstalk-manifests", version = "0.17.1" } clap = { version = "4.5.3", features = ["derive", "env", "wrap_help"] } clap-cargo = "0.15.2" compact_str = "0.9.0" diff --git a/crates/binstalk-manifests/CHANGELOG.md b/crates/binstalk-manifests/CHANGELOG.md index c6af9c5a..96a12325 100644 --- a/crates/binstalk-manifests/CHANGELOG.md +++ b/crates/binstalk-manifests/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.17.1](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-manifests-v0.17.0...binstalk-manifests-v0.17.1) - 2025-06-22 + +### Other + +- updated the following local packages: detect-targets + ## [0.17.0](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-manifests-v0.16.1...binstalk-manifests-v0.17.0) - 2025-06-21 ### Fixed diff --git a/crates/binstalk-manifests/Cargo.toml b/crates/binstalk-manifests/Cargo.toml index 89e8ef5b..a1d92fae 100644 --- a/crates/binstalk-manifests/Cargo.toml +++ b/crates/binstalk-manifests/Cargo.toml @@ -3,7 +3,7 @@ name = "binstalk-manifests" description = "The binstall toolkit for manipulating with manifest" repository = "https://github.com/cargo-bins/cargo-binstall" documentation = "https://docs.rs/binstalk-manifests" -version = "0.17.0" +version = "0.17.1" rust-version = "1.61.0" authors = ["ryan "] edition = "2021" @@ -25,5 +25,5 @@ toml_edit = { version = "0.22.12", features = ["serde"] } url = { version = "2.5.4", features = ["serde"] } [dev-dependencies] -detect-targets = { version = "0.1.53", path = "../detect-targets" } +detect-targets = { version = "0.1.54", path = "../detect-targets" } tempfile = "3.5.0" diff --git a/crates/binstalk/CHANGELOG.md b/crates/binstalk/CHANGELOG.md index fb90c5f2..41e1374d 100644 --- a/crates/binstalk/CHANGELOG.md +++ b/crates/binstalk/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.28.38](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-v0.28.37...binstalk-v0.28.38) - 2025-06-22 + +### Other + +- updated the following local packages: detect-targets + ## [0.28.37](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-v0.28.36...binstalk-v0.28.37) - 2025-06-21 ### Fixed diff --git a/crates/binstalk/Cargo.toml b/crates/binstalk/Cargo.toml index 7e71c9eb..b55df306 100644 --- a/crates/binstalk/Cargo.toml +++ b/crates/binstalk/Cargo.toml @@ -3,7 +3,7 @@ name = "binstalk" description = "The binstall toolkit (library interface)" repository = "https://github.com/cargo-bins/cargo-binstall" documentation = "https://docs.rs/binstalk" -version = "0.28.37" +version = "0.28.38" rust-version = "1.79.0" authors = ["ryan "] edition = "2021" @@ -21,7 +21,7 @@ binstalk-types = { version = "0.10.0", path = "../binstalk-types" } cargo-toml-workspace = { version = "7.0.6", path = "../cargo-toml-workspace" } command-group = { version = "5.0.1", features = ["with-tokio"] } compact_str = { version = "0.9.0", features = ["serde"] } -detect-targets = { version = "0.1.53", path = "../detect-targets", features = [ +detect-targets = { version = "0.1.54", path = "../detect-targets", features = [ "tracing", ] } either = "1.11.0" diff --git a/crates/detect-targets/CHANGELOG.md b/crates/detect-targets/CHANGELOG.md index 2ebd3cca..2887ed84 100644 --- a/crates/detect-targets/CHANGELOG.md +++ b/crates/detect-targets/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.54](https://github.com/cargo-bins/cargo-binstall/compare/detect-targets-v0.1.53...detect-targets-v0.1.54) - 2025-06-22 + +### Other + +- update Cargo.lock dependencies + ## [0.1.53](https://github.com/cargo-bins/cargo-binstall/compare/detect-targets-v0.1.52...detect-targets-v0.1.53) - 2025-06-21 ### Other diff --git a/crates/detect-targets/Cargo.toml b/crates/detect-targets/Cargo.toml index 76b6b7d2..17e6121d 100644 --- a/crates/detect-targets/Cargo.toml +++ b/crates/detect-targets/Cargo.toml @@ -3,7 +3,7 @@ name = "detect-targets" description = "Detect the target of the env at runtime" repository = "https://github.com/cargo-bins/cargo-binstall" documentation = "https://docs.rs/detect-targets" -version = "0.1.53" +version = "0.1.54" rust-version = "1.62.0" authors = ["Jiahao XU "] edition = "2021"