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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# 0.5.0 (March 15, 2026)

- Add macOS support.
- Add ARM32 (armv7/thumbv7) support.
- Add thread-local dispatch for parallel test execution on x86_64, ARM64, and ARM32.
- Add macro to support unsafe system function.
- Add feature to prevent injectorpp instance creation.
- Improve error message for fake function called time and arguments mismatch.
- Fix JIT allocation range restriction to AArch64 only.
- Fix test failure on x86-64 Windows by adding static lifetime.

# 0.4.0 (June 23, 2025)

- Introduce type check for major APIs.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "injectorpp"
version = "0.4.0"
version = "0.5.0"
authors = ["Jingyu Ma <mazong1123us@gmail.com>"]
license = "MIT"
readme = "README.md"
Expand Down
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,19 @@ This approach eliminates the need to make a trait solely for testing purposes. I

# Supported Platform

- OS: Linux and Windows
- Arch: arm64 and amd64
| OS | Arch |
| --- | --- |
| Linux | arm64, arm32, amd64 |
| macOS | arm64 |
| Windows | arm64, amd64 |

# Usage

Add `injectorpp` to the `Cargo.toml`:

```toml
[dev-dependencies]
injectorpp = "0.4.0"
injectorpp = "0.5.0"
```

Below `profile.test` config is recommended to make sure `injectorpp` working correctly in tests. If you have workspace, make sure add this on the top level of `Cargo.toml`:
Expand Down
Loading