diff --git a/CHANGES.md b/CHANGES.md index 4953e9a..00aaefe 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,12 +1,21 @@ +## v0.3.2 + +Released: 2024-07-22 + +- Emulate `libmacho.dylib` instead of hooking. +- Fix initialization of large-sized `NSData`. +- Compatibility with lief 0.15.0. +- Improve performance of `read_string`. + ## v0.3.1 Released: 2024-05-12 - Fix an error when creating `NSURLRequest` object ([issue #68][issue_68]). - Add `ObjC` which provided friendly interface to Objective-C runtime. -- Add hook for preferences related functions (`_CFPreferencesCopyAppValueWithContainerAndConfiguration`, `__CFXPreferencesCopyCurrentApplicationStateWithDeadlockAvoidance`). +- Add hook for preferences related functions. - Add hook for `MGCopyAnswe` which used by `UIDevice`. -- Add hook for keychain related functions (`SecItemAdd`, `SecItemUpdate`, `SecItemDelete`, `SecItemCopyMatching`). +- Add hook for keychain related functions. [issue_68]: https://github.com/sledgeh4w/chomper/issues/68 diff --git a/src/chomper/__init__.py b/src/chomper/__init__.py index 5af81d5..defbb04 100644 --- a/src/chomper/__init__.py +++ b/src/chomper/__init__.py @@ -1,3 +1,3 @@ from .core import Chomper -__version__ = "0.3.1" +__version__ = "0.3.2"