diff --git a/Cargo.lock b/Cargo.lock index f319ca1f8..960554f1d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -189,7 +189,7 @@ dependencies = [ [[package]] name = "atomic-file-install" -version = "1.0.5" +version = "1.0.6" dependencies = [ "reflink-copy", "tempfile", @@ -256,7 +256,7 @@ dependencies = [ [[package]] name = "binstalk" -version = "0.28.12" +version = "0.28.13" dependencies = [ "binstalk-bins", "binstalk-downloader", @@ -288,7 +288,7 @@ dependencies = [ [[package]] name = "binstalk-bins" -version = "0.6.3" +version = "0.6.4" dependencies = [ "atomic-file-install", "binstalk-types", @@ -381,7 +381,7 @@ dependencies = [ [[package]] name = "binstalk-manifests" -version = "0.15.9" +version = "0.15.10" dependencies = [ "beef", "binstalk-types", @@ -908,7 +908,7 @@ dependencies = [ [[package]] name = "detect-targets" -version = "0.1.28" +version = "0.1.29" dependencies = [ "cfg-if", "guess_host_triple", @@ -920,7 +920,7 @@ dependencies = [ [[package]] name = "detect-wasi" -version = "1.0.11" +version = "1.0.12" dependencies = [ "tempfile", ] diff --git a/crates/atomic-file-install/CHANGELOG.md b/crates/atomic-file-install/CHANGELOG.md new file mode 100644 index 000000000..17f2fa7e7 --- /dev/null +++ b/crates/atomic-file-install/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [1.0.6](https://github.com/cargo-bins/cargo-binstall/compare/atomic-file-install-v1.0.5...atomic-file-install-v1.0.6) - 2024-11-18 + +### Other + +- Upgrade transitive dependencies ([#1969](https://github.com/cargo-bins/cargo-binstall/pull/1969)) diff --git a/crates/atomic-file-install/Cargo.toml b/crates/atomic-file-install/Cargo.toml index 6472d276d..04018d0bb 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.5" +version = "1.0.6" 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 bed9f188a..e13495263 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.5", path = "../atomic-file-install" } -binstalk = { path = "../binstalk", version = "0.28.12", default-features = false } -binstalk-manifests = { path = "../binstalk-manifests", version = "0.15.9" } +atomic-file-install = { version = "1.0.6", path = "../atomic-file-install" } +binstalk = { path = "../binstalk", version = "0.28.13", default-features = false } +binstalk-manifests = { path = "../binstalk-manifests", version = "0.15.10" } clap = { version = "4.5.3", features = ["derive", "env"] } compact_str = "0.8.0" dirs = "5.0.1" diff --git a/crates/binstalk-bins/CHANGELOG.md b/crates/binstalk-bins/CHANGELOG.md index af7832999..a2751d6c5 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.4](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-bins-v0.6.3...binstalk-bins-v0.6.4) - 2024-11-18 + +### Other + +- updated the following local packages: atomic-file-install + ## [0.6.3](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-bins-v0.6.2...binstalk-bins-v0.6.3) - 2024-11-09 ### Other diff --git a/crates/binstalk-bins/Cargo.toml b/crates/binstalk-bins/Cargo.toml index 71addaaaf..fb99fdbfb 100644 --- a/crates/binstalk-bins/Cargo.toml +++ b/crates/binstalk-bins/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "binstalk-bins" -version = "0.6.3" +version = "0.6.4" 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.5", path = "../atomic-file-install" } +atomic-file-install = { version = "1.0.6", path = "../atomic-file-install" } binstalk-types = { version = "0.9.1", path = "../binstalk-types" } compact_str = { version = "0.8.0", features = ["serde"] } leon = "3.0.0" diff --git a/crates/binstalk-manifests/CHANGELOG.md b/crates/binstalk-manifests/CHANGELOG.md index 3775ec5b8..9dfe1dcd9 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.10](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-manifests-v0.15.9...binstalk-manifests-v0.15.10) - 2024-11-18 + +### Other + +- updated the following local packages: detect-targets + ## [0.15.9](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-manifests-v0.15.8...binstalk-manifests-v0.15.9) - 2024-11-09 ### Other diff --git a/crates/binstalk-manifests/Cargo.toml b/crates/binstalk-manifests/Cargo.toml index 501286fc5..b75938177 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.9" +version = "0.15.10" 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.3", features = ["serde"] } [dev-dependencies] -detect-targets = { version = "0.1.28", path = "../detect-targets" } +detect-targets = { version = "0.1.29", path = "../detect-targets" } tempfile = "3.5.0" diff --git a/crates/binstalk/CHANGELOG.md b/crates/binstalk/CHANGELOG.md index babcd84cc..7d0fa671a 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.13](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-v0.28.12...binstalk-v0.28.13) - 2024-11-18 + +### Other + +- updated the following local packages: detect-targets + ## [0.28.12](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-v0.28.11...binstalk-v0.28.12) - 2024-11-09 ### Other diff --git a/crates/binstalk/Cargo.toml b/crates/binstalk/Cargo.toml index 295672dfa..c522c10b6 100644 --- a/crates/binstalk/Cargo.toml +++ b/crates/binstalk/Cargo.toml @@ -3,14 +3,14 @@ name = "binstalk" description = "The binstall toolkit (library interface)" repository = "https://github.com/cargo-bins/cargo-binstall" documentation = "https://docs.rs/binstalk" -version = "0.28.12" +version = "0.28.13" rust-version = "1.79.0" authors = ["ryan "] edition = "2021" license = "GPL-3.0-only" [dependencies] -binstalk-bins = { version = "0.6.3", path = "../binstalk-bins" } +binstalk-bins = { version = "0.6.4", path = "../binstalk-bins" } binstalk-downloader = { version = "0.13.4", path = "../binstalk-downloader", default-features = false } binstalk-git-repo-api = { version = "0.5.6", path = "../binstalk-git-repo-api" } binstalk-fetchers = { version = "0.10.4", path = "../binstalk-fetchers", features = [ @@ -21,7 +21,7 @@ binstalk-types = { version = "0.9.1", path = "../binstalk-types" } cargo-toml-workspace = { version = "6.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.28", path = "../detect-targets", features = [ +detect-targets = { version = "0.1.29", path = "../detect-targets", features = [ "tracing", ] } either = "1.11.0" diff --git a/crates/detect-targets/CHANGELOG.md b/crates/detect-targets/CHANGELOG.md index 0c731e6c6..d3279353b 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.29](https://github.com/cargo-bins/cargo-binstall/compare/detect-targets-v0.1.28...detect-targets-v0.1.29) - 2024-11-18 + +### Other + +- update Cargo.lock dependencies + ## [0.1.28](https://github.com/cargo-bins/cargo-binstall/compare/detect-targets-v0.1.27...detect-targets-v0.1.28) - 2024-11-09 ### Other diff --git a/crates/detect-targets/Cargo.toml b/crates/detect-targets/Cargo.toml index 4d1fffd70..201c21bf4 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.28" +version = "0.1.29" rust-version = "1.62.0" authors = ["Jiahao XU "] edition = "2021" diff --git a/crates/detect-wasi/CHANGELOG.md b/crates/detect-wasi/CHANGELOG.md index e362364a7..f5b151b37 100644 --- a/crates/detect-wasi/CHANGELOG.md +++ b/crates/detect-wasi/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.12](https://github.com/cargo-bins/cargo-binstall/compare/detect-wasi-v1.0.11...detect-wasi-v1.0.12) - 2024-11-18 + +### Other + +- update Cargo.lock dependencies + ## [1.0.11](https://github.com/cargo-bins/cargo-binstall/compare/detect-wasi-v1.0.10...detect-wasi-v1.0.11) - 2024-11-09 ### Other diff --git a/crates/detect-wasi/Cargo.toml b/crates/detect-wasi/Cargo.toml index f1b539318..c81b9fe89 100644 --- a/crates/detect-wasi/Cargo.toml +++ b/crates/detect-wasi/Cargo.toml @@ -3,7 +3,7 @@ name = "detect-wasi" description = "Detect if WASI can be run" repository = "https://github.com/cargo-bins/cargo-binstall" documentation = "https://docs.rs/detect-wasi" -version = "1.0.11" +version = "1.0.12" rust-version = "1.61.0" authors = ["FĂ©lix Saparelli "] edition = "2021"