Skip to content

Commit 073cdd9

Browse files
committed
Release v0.3.1
1 parent 89b382c commit 073cdd9

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

CHANGES.md

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
1+
## v0.3.1
2+
3+
Released: 2024-05-12
4+
5+
- Fix an error when creating `NSURLRequest` object ([issue #68][issue_68]).
6+
- Add `ObjC` which provided friendly interface to Objective-C runtime.
7+
- Add hook for preferences related functions (`_CFPreferencesCopyAppValueWithContainerAndConfiguration`, `__CFXPreferencesCopyCurrentApplicationStateWithDeadlockAvoidance`).
8+
- Add hook for `MGCopyAnswe` which used by `UIDevice`.
9+
- Add hook for keychain related functions (`SecItemAdd`, `SecItemUpdate`, `SecItemDelete`, `SecItemCopyMatching`).
10+
11+
[issue_68]: https://github.com/sledgeh4w/chomper/issues/68
12+
113
## v0.3.0
214

315
Released: 2024-04-12
416

5-
- Support emulate executable files on iOS.
17+
- Support emulating iOS executable files.
618
- Support working with Objective-C.
719
- Drop support for Python 3.7.
820

@@ -23,15 +35,15 @@ Released: 2022-11-21
2335

2436
Released: 2022-09-17
2537

26-
- Support emulate library files on arch ARM.
38+
- Support emulating ARM architecture libraries.
2739

2840
## v0.0.2
2941

3042
Released: 2022-09-10
3143

3244
- Fix wrong ``end`` argument when calling ``Uc.hook_add``.
3345
- Add ``user_data`` param to ``add_hook`` to pass params to callback.
34-
- Support trace symbol calls by using ``trace_symbol_calls`` param.
46+
- Support tracing symbol calls by using ``trace_symbol_calls`` param.
3547
- Improve exception message of ``EmulatorCrashedException`` when missing symbol is required.
3648
- Add ``logger`` param to ``Infernum``.
3749
- Add ``free`` method to ``Infernum`` to release allocated memory.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Chomper is a lightweight emulation framework based on [Unicorn](https://github.c
99

1010
## Features
1111

12-
- Basic emulation of ELF and Mach-O
13-
- Support for a set of iOS system libraries (from iOS SDK 14.4.0)
12+
- Basic emulation for ELF and Mach-O
13+
- Support for a set of iOS system libraries (from iOS 14.4.0)
1414

1515
## Requirements
1616

src/chomper/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from .core import Chomper
22

3-
__version__ = "0.3.0"
3+
__version__ = "0.3.1"

0 commit comments

Comments
 (0)