diff --git a/jingle/CHANGELOG.md b/jingle/CHANGELOG.md index da60a6c0..2ea2f244 100644 --- a/jingle/CHANGELOG.md +++ b/jingle/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.2](https://github.com/toolCHAINZ/jingle/compare/jingle-v0.5.1...jingle-v0.5.2) - 2026-02-02 + +### Added + +- Add lifetime to pcodestore ([#147](https://github.com/toolCHAINZ/jingle/pull/147)) + +### Other + +- generalize display impls, rename trait, move it to jingle_sleigh ([#151](https://github.com/toolCHAINZ/jingle/pull/151)) +- move basic_block cfg impl to a trait and auto-impl for any edge type that is AsRef +- rename final => terminating ([#149](https://github.com/toolCHAINZ/jingle/pull/149)) + ## [0.5.1](https://github.com/toolCHAINZ/jingle/compare/jingle-v0.5.0...jingle-v0.5.1) - 2026-02-01 ### Added diff --git a/jingle/Cargo.toml b/jingle/Cargo.toml index 30b300ff..05d61ef0 100644 --- a/jingle/Cargo.toml +++ b/jingle/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jingle" -version = "0.5.1" +version = "0.5.2" edition = "2024" description = "SMT Modeling for Ghidra's PCODE" homepage = "https://github.com/toolCHAINZ/jingle" @@ -22,7 +22,7 @@ name = "jingle" required-features = ["bin"] [dependencies] -jingle_sleigh = { path = "../jingle_sleigh", version = "0.4.3" } +jingle_sleigh = { path = "../jingle_sleigh", version = "0.4.4" } z3 = { version = "0.19.0" } z3-sys = { version = "0.10.0", optional = true } thiserror = "2.0" diff --git a/jingle_sleigh/CHANGELOG.md b/jingle_sleigh/CHANGELOG.md index 3cc82a1a..f615069b 100644 --- a/jingle_sleigh/CHANGELOG.md +++ b/jingle_sleigh/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.4](https://github.com/toolCHAINZ/jingle/compare/jingle_sleigh-v0.4.3...jingle_sleigh-v0.4.4) - 2026-02-02 + +### Other + +- generalize display impls, rename trait, move it to jingle_sleigh ([#151](https://github.com/toolCHAINZ/jingle/pull/151)) + ## [0.4.3](https://github.com/toolCHAINZ/jingle/compare/jingle_sleigh-v0.4.2...jingle_sleigh-v0.4.3) - 2026-02-01 ### Added diff --git a/jingle_sleigh/Cargo.toml b/jingle_sleigh/Cargo.toml index 1416e33c..a7948570 100644 --- a/jingle_sleigh/Cargo.toml +++ b/jingle_sleigh/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jingle_sleigh" -version = "0.4.3" +version = "0.4.4" edition = "2024" description = "An FFI layer for Ghidra's SLEIGH" homepage = "https://github.com/toolCHAINZ/jingle"