From 637dde625362223505534e4b8d47e0f11b78b78b Mon Sep 17 00:00:00 2001 From: Travis Finkenauer Date: Sun, 25 Feb 2024 11:44:14 -0800 Subject: [PATCH] capstone-sys: bump to to 0.16.0 --- capstone-rs/Cargo.toml | 2 +- capstone-sys/CHANGELOG.md | 11 +++++++++-- capstone-sys/Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/capstone-rs/Cargo.toml b/capstone-rs/Cargo.toml index f90ebe71..62118c1b 100644 --- a/capstone-rs/Cargo.toml +++ b/capstone-rs/Cargo.toml @@ -15,7 +15,7 @@ version = "0.11.0" travis-ci = { repository = "capstone-rust/capstone-rs" } [dependencies] -capstone-sys = { path = "../capstone-sys", version = "0.15.0", default_features = false } +capstone-sys = { path = "../capstone-sys", version = "0.16.0", default_features = false } libc = { version = "0.2", default-features = false } [dev-dependencies] diff --git a/capstone-sys/CHANGELOG.md b/capstone-sys/CHANGELOG.md index 2e2f6d75..c69a3858 100644 --- a/capstone-sys/CHANGELOG.md +++ b/capstone-sys/CHANGELOG.md @@ -4,7 +4,14 @@ 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] - YYYY-MM-DD +## [0.16.0] - 2024-02-25 +### Fixed +- Make builds more reproducible + +### Added +- `full` feature (enabled by default) which disables [diet mode] for the Capstone C library + +[diet mode]: https://www.capstone-engine.org/diet.html ### Changed - Upgraded bundled capstone to from [f278de39 to 3b298421](https://github.com/aquynh/capstone/compare/f278de39...3b298421) @@ -106,7 +113,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed - Dependency -[Unreleased]: https://github.com/capstone-rust/capstone-rs/compare/capstone-sys-v0.15.0...master +[0.16.0]: https://github.com/capstone-rust/capstone-rs/compare/capstone-sys-v0.15.0...capstone-sys-v0.16.0 [0.15.0]: https://github.com/capstone-rust/capstone-rs/compare/capstone-sys-v0.14.0...capstone-sys-v0.15.0 [0.14.0]: https://github.com/capstone-rust/capstone-rs/compare/capstone-sys-v0.13.0...capstone-sys-v0.14.0 [0.13.0]: https://github.com/capstone-rust/capstone-rs/compare/capstone-sys-v0.12.0...capstone-sys-v0.13.0 diff --git a/capstone-sys/Cargo.toml b/capstone-sys/Cargo.toml index 846b3e74..18fa7935 100644 --- a/capstone-sys/Cargo.toml +++ b/capstone-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "capstone-sys" -version = "0.15.0" +version = "0.16.0" authors = ["m4b ", "tmfink "] description = "System bindings to the capstone disassembly library" build = "build.rs"