diff --git a/Cargo.lock b/Cargo.lock index c8b1a794..fdbfb64d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -189,7 +189,7 @@ dependencies = [ [[package]] name = "atomic-file-install" -version = "1.0.7" +version = "1.0.8" dependencies = [ "reflink-copy", "tempfile", @@ -256,7 +256,7 @@ dependencies = [ [[package]] name = "binstalk" -version = "0.28.20" +version = "0.28.21" dependencies = [ "binstalk-bins", "binstalk-downloader", @@ -288,7 +288,7 @@ dependencies = [ [[package]] name = "binstalk-bins" -version = "0.6.7" +version = "0.6.8" dependencies = [ "atomic-file-install", "binstalk-types", @@ -302,7 +302,7 @@ dependencies = [ [[package]] name = "binstalk-downloader" -version = "0.13.8" +version = "0.13.9" dependencies = [ "async-compression", "async-trait", @@ -338,7 +338,7 @@ dependencies = [ [[package]] name = "binstalk-fetchers" -version = "0.10.9" +version = "0.10.10" dependencies = [ "async-trait", "binstalk-downloader", @@ -362,7 +362,7 @@ dependencies = [ [[package]] name = "binstalk-git-repo-api" -version = "0.5.10" +version = "0.5.11" dependencies = [ "binstalk-downloader", "compact_str", @@ -381,7 +381,7 @@ dependencies = [ [[package]] name = "binstalk-manifests" -version = "0.15.17" +version = "0.15.18" dependencies = [ "beef", "binstalk-types", @@ -402,7 +402,7 @@ dependencies = [ [[package]] name = "binstalk-registry" -version = "0.11.9" +version = "0.11.10" dependencies = [ "async-trait", "base16", @@ -612,7 +612,7 @@ dependencies = [ [[package]] name = "cargo-toml-workspace" -version = "7.0.2" +version = "7.0.3" dependencies = [ "cargo_toml", "compact_str", @@ -937,7 +937,7 @@ dependencies = [ [[package]] name = "detect-targets" -version = "0.1.36" +version = "0.1.37" dependencies = [ "cfg-if", "guess_host_triple", diff --git a/crates/atomic-file-install/CHANGELOG.md b/crates/atomic-file-install/CHANGELOG.md index ec7114ec..4e62f1b4 100644 --- a/crates/atomic-file-install/CHANGELOG.md +++ b/crates/atomic-file-install/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.8](https://github.com/cargo-bins/cargo-binstall/compare/atomic-file-install-v1.0.7...atomic-file-install-v1.0.8) - 2025-01-13 + +### Other + +- update Cargo.lock dependencies + ## [1.0.7](https://github.com/cargo-bins/cargo-binstall/compare/atomic-file-install-v1.0.6...atomic-file-install-v1.0.7) - 2025-01-11 ### Other diff --git a/crates/atomic-file-install/Cargo.toml b/crates/atomic-file-install/Cargo.toml index 71716a26..d7cde6a2 100644 --- a/crates/atomic-file-install/Cargo.toml +++ b/crates/atomic-file-install/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atomic-file-install" -version = "1.0.7" +version = "1.0.8" edition = "2021" description = "For atomically installing a file or a symlink." repository = "https://github.com/cargo-bins/cargo-binstall" diff --git a/crates/bin/Cargo.toml b/crates/bin/Cargo.toml index b96eca7c..012b474f 100644 --- a/crates/bin/Cargo.toml +++ b/crates/bin/Cargo.toml @@ -22,9 +22,9 @@ pkg-fmt = "zip" pkg-fmt = "zip" [dependencies] -atomic-file-install = { version = "1.0.7", path = "../atomic-file-install" } -binstalk = { path = "../binstalk", version = "0.28.20", default-features = false } -binstalk-manifests = { path = "../binstalk-manifests", version = "0.15.17" } +atomic-file-install = { version = "1.0.8", path = "../atomic-file-install" } +binstalk = { path = "../binstalk", version = "0.28.21", default-features = false } +binstalk-manifests = { path = "../binstalk-manifests", version = "0.15.18" } clap = { version = "4.5.3", features = ["derive", "env"] } compact_str = "0.8.0" dirs = "6.0.0" diff --git a/crates/binstalk-bins/CHANGELOG.md b/crates/binstalk-bins/CHANGELOG.md index 81f06815..36888556 100644 --- a/crates/binstalk-bins/CHANGELOG.md +++ b/crates/binstalk-bins/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.8](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-bins-v0.6.7...binstalk-bins-v0.6.8) - 2025-01-13 + +### Other + +- update Cargo.lock dependencies + ## [0.6.7](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-bins-v0.6.6...binstalk-bins-v0.6.7) - 2025-01-11 ### Other diff --git a/crates/binstalk-bins/Cargo.toml b/crates/binstalk-bins/Cargo.toml index f796e189..4a4cbda4 100644 --- a/crates/binstalk-bins/Cargo.toml +++ b/crates/binstalk-bins/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "binstalk-bins" -version = "0.6.7" +version = "0.6.8" edition = "2021" description = "The binstall binaries discovery and installation crate." @@ -11,7 +11,7 @@ authors = ["Jiahao XU "] license = "GPL-3.0-only" [dependencies] -atomic-file-install = { version = "1.0.7", path = "../atomic-file-install" } +atomic-file-install = { version = "1.0.8", path = "../atomic-file-install" } binstalk-types = { version = "0.9.2", path = "../binstalk-types" } compact_str = { version = "0.8.0", features = ["serde"] } leon = "3.0.0" diff --git a/crates/binstalk-downloader/CHANGELOG.md b/crates/binstalk-downloader/CHANGELOG.md index 6567405d..dbf0bd67 100644 --- a/crates/binstalk-downloader/CHANGELOG.md +++ b/crates/binstalk-downloader/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.9](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-downloader-v0.13.8...binstalk-downloader-v0.13.9) - 2025-01-13 + +### Other + +- update Cargo.lock dependencies + ## [0.13.8](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-downloader-v0.13.7...binstalk-downloader-v0.13.8) - 2025-01-11 ### Other diff --git a/crates/binstalk-downloader/Cargo.toml b/crates/binstalk-downloader/Cargo.toml index 498446d9..a9b9db82 100644 --- a/crates/binstalk-downloader/Cargo.toml +++ b/crates/binstalk-downloader/Cargo.toml @@ -3,7 +3,7 @@ name = "binstalk-downloader" description = "The binstall toolkit for downloading and extracting file" repository = "https://github.com/cargo-bins/cargo-binstall" documentation = "https://docs.rs/binstalk-downloader" -version = "0.13.8" +version = "0.13.9" rust-version = "1.79.0" authors = ["ryan "] edition = "2021" diff --git a/crates/binstalk-fetchers/CHANGELOG.md b/crates/binstalk-fetchers/CHANGELOG.md index 71226a92..cca0cb3a 100644 --- a/crates/binstalk-fetchers/CHANGELOG.md +++ b/crates/binstalk-fetchers/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.10](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-fetchers-v0.10.9...binstalk-fetchers-v0.10.10) - 2025-01-13 + +### Other + +- update Cargo.lock dependencies + ## [0.10.9](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-fetchers-v0.10.8...binstalk-fetchers-v0.10.9) - 2025-01-11 ### Other diff --git a/crates/binstalk-fetchers/Cargo.toml b/crates/binstalk-fetchers/Cargo.toml index b1ad3606..eae82085 100644 --- a/crates/binstalk-fetchers/Cargo.toml +++ b/crates/binstalk-fetchers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "binstalk-fetchers" -version = "0.10.9" +version = "0.10.10" edition = "2021" description = "The binstall fetchers" @@ -12,8 +12,8 @@ license = "GPL-3.0-only" [dependencies] async-trait = "0.1.84" -binstalk-downloader = { version = "0.13.8", path = "../binstalk-downloader", default-features = false } -binstalk-git-repo-api = { version = "0.5.10", path = "../binstalk-git-repo-api" } +binstalk-downloader = { version = "0.13.9", path = "../binstalk-downloader", default-features = false } +binstalk-git-repo-api = { version = "0.5.11", path = "../binstalk-git-repo-api" } binstalk-types = { version = "0.9.2", path = "../binstalk-types" } bytes = "1.4.0" compact_str = { version = "0.8.0" } @@ -34,7 +34,7 @@ tracing = "0.1.39" url = "2.5.4" [dev-dependencies] -binstalk-downloader = { version = "0.13.8", path = "../binstalk-downloader" } +binstalk-downloader = { version = "0.13.9", path = "../binstalk-downloader" } [features] quickinstall = [] diff --git a/crates/binstalk-git-repo-api/CHANGELOG.md b/crates/binstalk-git-repo-api/CHANGELOG.md index 14ad3df1..3bdab9b7 100644 --- a/crates/binstalk-git-repo-api/CHANGELOG.md +++ b/crates/binstalk-git-repo-api/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.11](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-git-repo-api-v0.5.10...binstalk-git-repo-api-v0.5.11) - 2025-01-13 + +### Other + +- update Cargo.lock dependencies + ## [0.5.10](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-git-repo-api-v0.5.9...binstalk-git-repo-api-v0.5.10) - 2025-01-11 ### Other diff --git a/crates/binstalk-git-repo-api/Cargo.toml b/crates/binstalk-git-repo-api/Cargo.toml index 641ec4ce..e42b1e03 100644 --- a/crates/binstalk-git-repo-api/Cargo.toml +++ b/crates/binstalk-git-repo-api/Cargo.toml @@ -3,14 +3,14 @@ name = "binstalk-git-repo-api" description = "The binstall toolkit for accessing API for git repository" repository = "https://github.com/cargo-bins/cargo-binstall" documentation = "https://docs.rs/binstalk-git-repo-api" -version = "0.5.10" +version = "0.5.11" rust-version = "1.70.0" authors = ["Jiahao XU "] edition = "2021" license = "Apache-2.0 OR MIT" [dependencies] -binstalk-downloader = { version = "0.13.8", path = "../binstalk-downloader", default-features = false, features = [ +binstalk-downloader = { version = "0.13.9", path = "../binstalk-downloader", default-features = false, features = [ "json", ] } compact_str = "0.8.0" @@ -25,6 +25,6 @@ url = "2.5.4" zeroize = "1.8.1" [dev-dependencies] -binstalk-downloader = { version = "0.13.8", path = "../binstalk-downloader" } +binstalk-downloader = { version = "0.13.9", path = "../binstalk-downloader" } tracing-subscriber = "0.3" once_cell = "1" diff --git a/crates/binstalk-manifests/CHANGELOG.md b/crates/binstalk-manifests/CHANGELOG.md index 85330b57..aeb6dc1f 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.15.18](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-manifests-v0.15.17...binstalk-manifests-v0.15.18) - 2025-01-13 + +### Other + +- update Cargo.lock dependencies + ## [0.15.17](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-manifests-v0.15.16...binstalk-manifests-v0.15.17) - 2025-01-11 ### Other diff --git a/crates/binstalk-manifests/Cargo.toml b/crates/binstalk-manifests/Cargo.toml index a3ca82de..af87cbf4 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.15.17" +version = "0.15.18" 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.36", path = "../detect-targets" } +detect-targets = { version = "0.1.37", path = "../detect-targets" } tempfile = "3.5.0" diff --git a/crates/binstalk-registry/CHANGELOG.md b/crates/binstalk-registry/CHANGELOG.md index 438865ce..9eb7fe86 100644 --- a/crates/binstalk-registry/CHANGELOG.md +++ b/crates/binstalk-registry/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.11.10](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-registry-v0.11.9...binstalk-registry-v0.11.10) - 2025-01-13 + +### Other + +- update Cargo.lock dependencies + ## [0.11.9](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-registry-v0.11.8...binstalk-registry-v0.11.9) - 2025-01-11 ### Other diff --git a/crates/binstalk-registry/Cargo.toml b/crates/binstalk-registry/Cargo.toml index 41877cf2..1403c209 100644 --- a/crates/binstalk-registry/Cargo.toml +++ b/crates/binstalk-registry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "binstalk-registry" -version = "0.11.9" +version = "0.11.10" edition = "2021" rust-version = "1.65.0" @@ -13,11 +13,11 @@ license = "Apache-2.0 OR MIT" [dependencies] async-trait = "0.1.84" base16 = "0.2.1" -binstalk-downloader = { version = "0.13.8", path = "../binstalk-downloader", default-features = false, features = [ +binstalk-downloader = { version = "0.13.9", path = "../binstalk-downloader", default-features = false, features = [ "json", ] } binstalk-types = { version = "0.9.2", path = "../binstalk-types" } -cargo-toml-workspace = { version = "7.0.2", path = "../cargo-toml-workspace" } +cargo-toml-workspace = { version = "7.0.3", path = "../cargo-toml-workspace" } compact_str = { version = "0.8.0", features = ["serde"] } leon = "3.0.0" miette = "7.0.0" @@ -40,7 +40,7 @@ url = "2.5.4" [dev-dependencies] tokio = { version = "1", features = ["rt-multi-thread", "macros"] } toml_edit = { version = "0.22.12", features = ["serde"] } -binstalk-downloader = { version = "0.13.8", path = "../binstalk-downloader", default-features = false, features = [ +binstalk-downloader = { version = "0.13.9", path = "../binstalk-downloader", default-features = false, features = [ "rustls", ] } diff --git a/crates/binstalk/CHANGELOG.md b/crates/binstalk/CHANGELOG.md index 015ed4ba..ca35e68e 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.21](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-v0.28.20...binstalk-v0.28.21) - 2025-01-13 + +### Other + +- update Cargo.lock dependencies + ## [0.28.20](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-v0.28.19...binstalk-v0.28.20) - 2025-01-11 ### Other diff --git a/crates/binstalk/Cargo.toml b/crates/binstalk/Cargo.toml index 820dc07b..4293ff64 100644 --- a/crates/binstalk/Cargo.toml +++ b/crates/binstalk/Cargo.toml @@ -3,25 +3,25 @@ name = "binstalk" description = "The binstall toolkit (library interface)" repository = "https://github.com/cargo-bins/cargo-binstall" documentation = "https://docs.rs/binstalk" -version = "0.28.20" +version = "0.28.21" rust-version = "1.79.0" authors = ["ryan "] edition = "2021" license = "GPL-3.0-only" [dependencies] -binstalk-bins = { version = "0.6.7", path = "../binstalk-bins" } -binstalk-downloader = { version = "0.13.8", path = "../binstalk-downloader", default-features = false } -binstalk-git-repo-api = { version = "0.5.10", path = "../binstalk-git-repo-api" } -binstalk-fetchers = { version = "0.10.9", path = "../binstalk-fetchers", features = [ +binstalk-bins = { version = "0.6.8", path = "../binstalk-bins" } +binstalk-downloader = { version = "0.13.9", path = "../binstalk-downloader", default-features = false } +binstalk-git-repo-api = { version = "0.5.11", path = "../binstalk-git-repo-api" } +binstalk-fetchers = { version = "0.10.10", path = "../binstalk-fetchers", features = [ "quickinstall", ] } -binstalk-registry = { version = "0.11.9", path = "../binstalk-registry" } +binstalk-registry = { version = "0.11.10", path = "../binstalk-registry" } binstalk-types = { version = "0.9.2", path = "../binstalk-types" } -cargo-toml-workspace = { version = "7.0.2", path = "../cargo-toml-workspace" } +cargo-toml-workspace = { version = "7.0.3", path = "../cargo-toml-workspace" } command-group = { version = "5.0.1", features = ["with-tokio"] } compact_str = { version = "0.8.0", features = ["serde"] } -detect-targets = { version = "0.1.36", path = "../detect-targets", features = [ +detect-targets = { version = "0.1.37", path = "../detect-targets", features = [ "tracing", ] } either = "1.11.0" diff --git a/crates/cargo-toml-workspace/CHANGELOG.md b/crates/cargo-toml-workspace/CHANGELOG.md index 4045e486..b9d68ecc 100644 --- a/crates/cargo-toml-workspace/CHANGELOG.md +++ b/crates/cargo-toml-workspace/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [7.0.3](https://github.com/cargo-bins/cargo-binstall/compare/cargo-toml-workspace-v7.0.2...cargo-toml-workspace-v7.0.3) - 2025-01-13 + +### Other + +- update Cargo.lock dependencies + ## [7.0.2](https://github.com/cargo-bins/cargo-binstall/compare/cargo-toml-workspace-v7.0.1...cargo-toml-workspace-v7.0.2) - 2025-01-11 ### Other diff --git a/crates/cargo-toml-workspace/Cargo.toml b/crates/cargo-toml-workspace/Cargo.toml index d8adff00..147f8d3d 100644 --- a/crates/cargo-toml-workspace/Cargo.toml +++ b/crates/cargo-toml-workspace/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-toml-workspace" -version = "7.0.2" +version = "7.0.3" edition = "2021" description = "Parse cargo workspace and load specific crate" repository = "https://github.com/cargo-bins/cargo-binstall" diff --git a/crates/detect-targets/CHANGELOG.md b/crates/detect-targets/CHANGELOG.md index 0250915b..ab225935 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.37](https://github.com/cargo-bins/cargo-binstall/compare/detect-targets-v0.1.36...detect-targets-v0.1.37) - 2025-01-13 + +### Other + +- update Cargo.lock dependencies + ## [0.1.36](https://github.com/cargo-bins/cargo-binstall/compare/detect-targets-v0.1.35...detect-targets-v0.1.36) - 2025-01-11 ### Other diff --git a/crates/detect-targets/Cargo.toml b/crates/detect-targets/Cargo.toml index 3bc95de6..bab8a590 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.36" +version = "0.1.37" rust-version = "1.62.0" authors = ["Jiahao XU "] edition = "2021"