chore: release (#2183)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2025-06-06 14:52:08 +00:00 committed by GitHub
parent 4ec96064b6
commit 293f2378d6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 98 additions and 40 deletions

View file

@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.16.0](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-manifests-v0.15.31...binstalk-manifests-v0.16.0) - 2025-06-06
### Fixed
- fix updating of installed crates manifest on custom sparse registry ([#2178](https://github.com/cargo-bins/cargo-binstall/pull/2178))
### Other
- Optimize CratesToml ([#2186](https://github.com/cargo-bins/cargo-binstall/pull/2186))
## [0.15.31](https://github.com/cargo-bins/cargo-binstall/compare/binstalk-manifests-v0.15.30...binstalk-manifests-v0.15.31) - 2025-05-30
### 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.31"
version = "0.16.0"
rust-version = "1.61.0"
authors = ["ryan <ryan@kurte.nz>"]
edition = "2021"
@ -11,7 +11,7 @@ license = "Apache-2.0 OR MIT"
[dependencies]
beef = { version = "0.5.2", features = ["impl_serde"] }
binstalk-types = { version = "0.9.4", path = "../binstalk-types" }
binstalk-types = { version = "0.10.0", path = "../binstalk-types" }
compact_str = { version = "0.9.0", features = ["serde"] }
fs-lock = { version = "0.1.10", path = "../fs-lock", features = ["tracing"] }
home = "0.5.9"
@ -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.50", path = "../detect-targets" }
detect-targets = { version = "0.1.51", path = "../detect-targets" }
tempfile = "3.5.0"