chore: release (#1986)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2024-11-29 21:13:39 +11:00 committed by GitHub
parent 84683f1ff6
commit b78dfd2890
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 45 additions and 15 deletions

10
Cargo.lock generated
View file

@ -256,7 +256,7 @@ dependencies = [
[[package]]
name = "binstalk"
version = "0.28.14"
version = "0.28.15"
dependencies = [
"binstalk-bins",
"binstalk-downloader",
@ -338,7 +338,7 @@ dependencies = [
[[package]]
name = "binstalk-fetchers"
version = "0.10.5"
version = "0.10.6"
dependencies = [
"async-trait",
"binstalk-downloader",
@ -381,7 +381,7 @@ dependencies = [
[[package]]
name = "binstalk-manifests"
version = "0.15.11"
version = "0.15.12"
dependencies = [
"beef",
"binstalk-types",
@ -927,7 +927,7 @@ dependencies = [
[[package]]
name = "detect-targets"
version = "0.1.30"
version = "0.1.31"
dependencies = [
"cfg-if",
"guess_host_triple",
@ -939,7 +939,7 @@ dependencies = [
[[package]]
name = "detect-wasi"
version = "1.0.13"
version = "1.0.14"
dependencies = [
"tempfile",
]

View file

@ -23,8 +23,8 @@ pkg-fmt = "zip"
[dependencies]
atomic-file-install = { version = "1.0.6", path = "../atomic-file-install" }
binstalk = { path = "../binstalk", version = "0.28.14", default-features = false }
binstalk-manifests = { path = "../binstalk-manifests", version = "0.15.11" }
binstalk = { path = "../binstalk", version = "0.28.15", default-features = false }
binstalk-manifests = { path = "../binstalk-manifests", version = "0.15.12" }
clap = { version = "4.5.3", features = ["derive", "env"] }
compact_str = "0.8.0"
dirs = "5.0.1"

View file

@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.10.6](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-fetchers-v0.10.5...binstalk-fetchers-v0.10.6) - 2024-11-29
### Other
- Upgrade transitive dependencies ([#1985](https://github.com/cargo-bins/cargo-binstall/pull/1985))
## [0.10.5](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-fetchers-v0.10.4...binstalk-fetchers-v0.10.5) - 2024-11-23
### Other

View file

@ -1,6 +1,6 @@
[package]
name = "binstalk-fetchers"
version = "0.10.5"
version = "0.10.6"
edition = "2021"
description = "The binstall fetchers"

View file

@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.15.12](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-manifests-v0.15.11...binstalk-manifests-v0.15.12) - 2024-11-29
### Other
- updated the following local packages: detect-targets
## [0.15.11](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-manifests-v0.15.10...binstalk-manifests-v0.15.11) - 2024-11-23
### Other

View file

@ -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.11"
version = "0.15.12"
rust-version = "1.61.0"
authors = ["ryan <ryan@kurte.nz>"]
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.30", path = "../detect-targets" }
detect-targets = { version = "0.1.31", path = "../detect-targets" }
tempfile = "3.5.0"

View file

@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.28.15](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-v0.28.14...binstalk-v0.28.15) - 2024-11-29
### Other
- updated the following local packages: binstalk-fetchers, detect-targets
## [0.28.14](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-v0.28.13...binstalk-v0.28.14) - 2024-11-23
### Other

View file

@ -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.14"
version = "0.28.15"
rust-version = "1.79.0"
authors = ["ryan <ryan@kurte.nz>"]
edition = "2021"
@ -13,7 +13,7 @@ license = "GPL-3.0-only"
binstalk-bins = { version = "0.6.5", path = "../binstalk-bins" }
binstalk-downloader = { version = "0.13.5", path = "../binstalk-downloader", default-features = false }
binstalk-git-repo-api = { version = "0.5.7", path = "../binstalk-git-repo-api" }
binstalk-fetchers = { version = "0.10.5", path = "../binstalk-fetchers", features = [
binstalk-fetchers = { version = "0.10.6", path = "../binstalk-fetchers", features = [
"quickinstall",
] }
binstalk-registry = { version = "0.11.5", path = "../binstalk-registry" }
@ -21,7 +21,7 @@ binstalk-types = { version = "0.9.2", 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.30", path = "../detect-targets", features = [
detect-targets = { version = "0.1.31", path = "../detect-targets", features = [
"tracing",
] }
either = "1.11.0"

View file

@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.1.31](https://github.com/cargo-bins/cargo-binstall/compare/detect-targets-v0.1.30...detect-targets-v0.1.31) - 2024-11-29
### Other
- update Cargo.lock dependencies
## [0.1.30](https://github.com/cargo-bins/cargo-binstall/compare/detect-targets-v0.1.29...detect-targets-v0.1.30) - 2024-11-23
### Other

View file

@ -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.30"
version = "0.1.31"
rust-version = "1.62.0"
authors = ["Jiahao XU <Jiahao_XU@outlook.com>"]
edition = "2021"

View file

@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [1.0.14](https://github.com/cargo-bins/cargo-binstall/compare/detect-wasi-v1.0.13...detect-wasi-v1.0.14) - 2024-11-29
### Other
- update Cargo.lock dependencies
## [1.0.13](https://github.com/cargo-bins/cargo-binstall/compare/detect-wasi-v1.0.12...detect-wasi-v1.0.13) - 2024-11-23
### Other

View file

@ -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.13"
version = "1.0.14"
rust-version = "1.61.0"
authors = ["Félix Saparelli <felix@passcod.name>"]
edition = "2021"