Skip to content

Commit

Permalink
changed the Frida dependency requirement to be frida 12.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chame1eon committed May 11, 2020
1 parent 2741b08 commit ba8b1a5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# jnitrace Change Log

## 3.0.8
- Changed the required version of Frida in the setup.py file to be 12.5.0

## 3.0.7
- 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

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jnitrace",
"version": "3.0.7",
"version": "3.0.8",
"description": "A tool for tracing use of the JNI in Android apps",
"private": true,
"main": "jnitrace/src/main.js",
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='jnitrace',
version='3.0.7',
version='3.0.8',
description='A tool for tracing use of the JNI in Android apps',
long_description=long_description,
long_description_content_type='text/markdown',
Expand All @@ -33,7 +33,7 @@
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
python_requires='>=3.0, <4',
install_requires=[
'frida>=12.0.0',
'frida>=12.5.0',
'colorama',
'hexdump'
],
Expand Down

0 comments on commit ba8b1a5

Please sign in to comment.