Skip to content

Commit ba8b1a5

Browse files
committed
changed the Frida dependency requirement to be frida 12.5.0
1 parent 2741b08 commit ba8b1a5

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# jnitrace Change Log
22

3+
## 3.0.8
4+
- Changed the required version of Frida in the setup.py file to be 12.5.0
5+
36
## 3.0.7
47
- Fixed a bug where local JNI references were not being deleted. The result was reuse by the runtime of reference values led to other arguments/return values being incorrectly named
58

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jnitrace",
3-
"version": "3.0.7",
3+
"version": "3.0.8",
44
"description": "A tool for tracing use of the JNI in Android apps",
55
"private": true,
66
"main": "jnitrace/src/main.js",

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name='jnitrace',
11-
version='3.0.7',
11+
version='3.0.8',
1212
description='A tool for tracing use of the JNI in Android apps',
1313
long_description=long_description,
1414
long_description_content_type='text/markdown',
@@ -33,7 +33,7 @@
3333
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
3434
python_requires='>=3.0, <4',
3535
install_requires=[
36-
'frida>=12.0.0',
36+
'frida>=12.5.0',
3737
'colorama',
3838
'hexdump'
3939
],

0 commit comments

Comments
 (0)