diff --git a/CHANGELOG.md b/CHANGELOG.md index b63014e..0f9e431 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ 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.13.0] - 2025-02-04 ### Added - BPF arch support - Detail support for SystemZ @@ -177,7 +177,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.12.0...master +[0.13.0]: https://github.com/capstone-rust/capstone-rs/compare/capstone-v0.12.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 diff --git a/Cargo.lock b/Cargo.lock index 2703d6d..3cd502c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -81,7 +81,7 @@ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" [[package]] name = "capstone" -version = "0.12.0" +version = "0.13.0" dependencies = [ "capstone-sys", "criterion", diff --git a/capstone-rs/Cargo.toml b/capstone-rs/Cargo.toml index ba8ec4c..c3cd2a1 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.12.0" +version = "0.13.0" rust-version.workspace = true [badges] diff --git a/cstool/Cargo.toml b/cstool/Cargo.toml index d6ca43c..0937252 100644 --- a/cstool/Cargo.toml +++ b/cstool/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT" edition = "2018" [dependencies] -capstone = { path = "../capstone-rs", version = "0.12.0" } +capstone = { path = "../capstone-rs", version = "0.13.0" } log = "0.4" stderrlog = "0.6"