diff --git a/CHANGELOG.md b/CHANGELOG.md index 50e7e7d3..573e477d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,10 @@ 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.12.0] - 2024-02-25 +### Added +- `full` feature (enabled by default) which disables [diet mode] for the Capstone C library + ### Changed - Bump minimum Rust version to 1.60.0 - `Arm64OperandType::Sys` contains `Arm64SysOp` instead of `u32` @@ -158,7 +161,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-v0.11.0...master +[0.12.0]: https://github.com/capstone-rust/capstone-rs/compare/capstone-v0.11.0...capstone-v0.12.0 [0.11.0]: https://github.com/capstone-rust/capstone-rs/compare/capstone-v0.10.0...capstone-v0.11.0 [0.10.0]: https://github.com/capstone-rust/capstone-rs/compare/capstone-v0.9.0...capstone-v0.10.0 [0.9.0]: https://github.com/capstone-rust/capstone-rs/compare/capstone-v0.8.0...capstone-v0.9.0 diff --git a/capstone-rs/Cargo.toml b/capstone-rs/Cargo.toml index 62118c1b..a24afe97 100644 --- a/capstone-rs/Cargo.toml +++ b/capstone-rs/Cargo.toml @@ -9,7 +9,7 @@ name = "capstone" repository = "https://github.com/capstone-rust/capstone-rs" readme = "../README.md" edition = "2018" -version = "0.11.0" +version = "0.12.0" [badges] travis-ci = { repository = "capstone-rust/capstone-rs" } diff --git a/cstool/Cargo.toml b/cstool/Cargo.toml index 5691849f..8d9caccb 100644 --- a/cstool/Cargo.toml +++ b/cstool/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT" edition = "2018" [dependencies] -capstone = { path = "../capstone-rs", version = "0.11.0" } +capstone = { path = "../capstone-rs", version = "0.12.0" } log = "0.4" stderrlog = "0.5"