mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-20 20:48:43 +00:00
chore: release (#1972)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
b1aaafcd75
commit
10a53e7bfb
14 changed files with 63 additions and 19 deletions
12
Cargo.lock
generated
12
Cargo.lock
generated
|
@ -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",
|
||||
]
|
||||
|
|
14
crates/atomic-file-install/CHANGELOG.md
Normal file
14
crates/atomic-file-install/CHANGELOG.md
Normal file
|
@ -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))
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 <Jiahao_XU@outlook.com>"]
|
|||
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"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 <ryan@kurte.nz>"]
|
||||
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"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 <ryan@kurte.nz>"]
|
||||
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"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 <Jiahao_XU@outlook.com>"]
|
||||
edition = "2021"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 <felix@passcod.name>"]
|
||||
edition = "2021"
|
||||
|
|
Loading…
Add table
Reference in a new issue