Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions jingle/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<PcodeOperation>
- 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
Expand Down
4 changes: 2 additions & 2 deletions jingle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"
Expand Down
6 changes: 6 additions & 0 deletions jingle_sleigh/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jingle_sleigh/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down