Skip to content

Commit 5257a09

Browse files
authored
chore: release (#140)
1 parent d6080c8 commit 5257a09

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

jingle/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.5.1](https://github.com/toolCHAINZ/jingle/compare/jingle-v0.5.0...jingle-v0.5.1) - 2026-02-01
11+
12+
### Added
13+
14+
- Refactor analysis traits to reduce copies ([#146](https://github.com/toolCHAINZ/jingle/pull/146))
15+
- Add get_op_at_address method and generalize PcodeStore impl ([#145](https://github.com/toolCHAINZ/jingle/pull/145))
16+
- track pcode ops in cfg by address instead of abstract state ([#144](https://github.com/toolCHAINZ/jingle/pull/144))
17+
- Minor Analysis Tweaks ([#142](https://github.com/toolCHAINZ/jingle/pull/142))
18+
- add an api to get a sub-graph ([#141](https://github.com/toolCHAINZ/jingle/pull/141))
19+
- add constructor method to ConcretePcodeAddress ([#139](https://github.com/toolCHAINZ/jingle/pull/139))
20+
21+
### Removed
22+
23+
- remove unused back-edge analysis and unwoundcfg wrapper type ([#143](https://github.com/toolCHAINZ/jingle/pull/143))
24+
1025
## [0.5.0](https://github.com/toolCHAINZ/jingle/compare/jingle-v0.4.2...jingle-v0.5.0) - 2026-01-28
1126

1227
### Added

jingle/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jingle"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
edition = "2024"
55
description = "SMT Modeling for Ghidra's PCODE"
66
homepage = "https://github.com/toolCHAINZ/jingle"
@@ -22,7 +22,7 @@ name = "jingle"
2222
required-features = ["bin"]
2323

2424
[dependencies]
25-
jingle_sleigh = { path = "../jingle_sleigh", version = "0.4.2" }
25+
jingle_sleigh = { path = "../jingle_sleigh", version = "0.4.3" }
2626
z3 = { version = "0.19.0" }
2727
z3-sys = { version = "0.10.0", optional = true }
2828
thiserror = "2.0"

jingle_sleigh/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.4.3](https://github.com/toolCHAINZ/jingle/compare/jingle_sleigh-v0.4.2...jingle_sleigh-v0.4.3) - 2026-02-01
11+
12+
### Added
13+
14+
- add an api to get a sub-graph ([#141](https://github.com/toolCHAINZ/jingle/pull/141))
15+
1016
## [0.4.2](https://github.com/toolCHAINZ/jingle/compare/jingle_sleigh-v0.4.1...jingle_sleigh-v0.4.2) - 2026-01-28
1117

1218
### Added

jingle_sleigh/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jingle_sleigh"
3-
version = "0.4.2"
3+
version = "0.4.3"
44
edition = "2024"
55
description = "An FFI layer for Ghidra's SLEIGH"
66
homepage = "https://github.com/toolCHAINZ/jingle"

0 commit comments

Comments
 (0)