Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"crates/idakit-sys-codegen": "0.2.0",
"crates/idakit-sys": "0.2.0",
"crates/idakit": "0.2.0"
"crates/idakit-sys-codegen": "0.2.1",
"crates/idakit-sys": "0.2.1",
"crates/idakit": "0.2.1"
}
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions crates/idakit-sys-codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## [0.2.1](https://github.com/Xevion/idakit/compare/idakit-sys-codegen-v0.2.0...idakit-sys-codegen-v0.2.1) (2026-08-24)


### Miscellaneous

* **idakit-sys-codegen:** Synchronize idakit versions
2 changes: 1 addition & 1 deletion crates/idakit-sys-codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "idakit-sys-codegen"
version = "0.2.0"
version = "0.2.1"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand Down
14 changes: 14 additions & 0 deletions crates/idakit-sys/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.2.1](https://github.com/Xevion/idakit/compare/idakit-sys-v0.2.0...idakit-sys-v0.2.1) (2026-08-24)


### Miscellaneous

* **idakit-sys:** Synchronize idakit versions


### Dependencies

* The following workspace dependencies were updated
* build-dependencies
* idakit-sys-codegen bumped from 0.2.0 to 0.2.1

## [0.2.0](https://github.com/Xevion/idakit/compare/idakit-sys-v0.1.1...idakit-sys-v0.2.0) (2026-08-24)


Expand Down
4 changes: 2 additions & 2 deletions crates/idakit-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "idakit-sys"
version = "0.2.0"
version = "0.2.1"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand All @@ -27,7 +27,7 @@ cc = "1"
# baked into every bridge symbol, so a float that moves one side alone fails to link.
cxx-build = "=1.0.197"
dirs = "6.0.0"
idakit-sys-codegen = { path = "../idakit-sys-codegen", version = "0.2.0" }
idakit-sys-codegen = { path = "../idakit-sys-codegen", version = "0.2.1" }
libloading = "0.9.0"

[[example]]
Expand Down
15 changes: 15 additions & 0 deletions crates/idakit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [0.2.1](https://github.com/Xevion/idakit/compare/idakit-v0.2.0...idakit-v0.2.1) (2026-08-24)


### Bug Fixes

* **kernel:** Clear decompiler state on close ([6b63f5a](https://github.com/Xevion/idakit/commit/6b63f5acd0f4bc75373640857a401896dbb9d06e))
* **test:** Declare check isolation instead of assuming read-only ([b979bf0](https://github.com/Xevion/idakit/commit/b979bf03c565f626ebfe344c3ee5cd484d18ff6f))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* idakit-sys bumped from 0.2.0 to 0.2.1

## [0.2.0](https://github.com/Xevion/idakit/compare/idakit-v0.1.1...idakit-v0.2.0) (2026-08-24)


Expand Down
4 changes: 2 additions & 2 deletions crates/idakit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "idakit"
version = "0.2.0"
version = "0.2.1"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand All @@ -24,7 +24,7 @@ all-features = true
bon = "3.9.3"
cxx = "1.0.197"
dotenvy = "0.15.7"
idakit-sys = { path = "../idakit-sys", version = "0.2.0" }
idakit-sys = { path = "../idakit-sys", version = "0.2.1" }
num_enum = "0.7.6"
postcard = { version = "1.1.3", default-features = false, features = ["alloc"], optional = true }
serde = { version = "1.0.228", features = ["derive"] }
Expand Down