Skip to content

Commit f40e22e

Browse files
committed
Update install instructions
Also, bump version to 2.1.2
1 parent 6b408a3 commit f40e22e

File tree

3 files changed

+5
-23
lines changed

3 files changed

+5
-23
lines changed

README.md

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,6 @@ For more information on what this tool can be used for, check out:
1818

1919
## Installing
2020

21-
```bash
22-
23-
pip install --upgrade wheel
24-
pip wheel --wheel-dir=/tmp/yara-python --build-option="build" --build-option="--enable-dex" git+https://github.com/VirusTotal/yara-python.git@v3.11.0
25-
pip install --no-index --find-links=/tmp/yara-python yara-python
26-
```
27-
28-
Finally, install APKiD:
29-
3021
```bash
3122
pip install apkid
3223
```
@@ -55,7 +46,7 @@ usage: apkid [-h] [-v] [-t TIMEOUT] [-r] [--scan-depth SCAN_DEPTH]
5546
[-o DIR]
5647
[FILE [FILE ...]]
5748
58-
APKiD - Android Application Identifier v2.1.0
49+
APKiD - Android Application Identifier v2.1.2
5950
6051
positional arguments:
6152
FILE apk, dex, or directory
@@ -121,7 +112,7 @@ Make sure the version has been updated in [apkid/__init__.py](apkid/__init__.py)
121112
Update the compiled rules, the readme, build the package and upload to PyPI:
122113

123114
```bash
124-
./pre-release.py readme
115+
./prep-release.py readme
125116
rm -f dist/*
126117
python setup.py sdist bdist_wheel
127118
twine upload --repository-url https://upload.pypi.org/legacy/ dist/*

README.rst

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,6 @@ For more information on what this tool can be used for, check out:
2525
Installing
2626
----------
2727

28-
.. code:: bash
29-
30-
31-
pip install --upgrade wheel
32-
pip wheel --wheel-dir=/tmp/yara-python --build-option="build" --build-option="--enable-dex" git+https://github.com/VirusTotal/yara-python.git@v3.11.0
33-
pip install --no-index --find-links=/tmp/yara-python yara-python
34-
35-
Finally, install APKiD:
36-
3728
.. code:: bash
3829
3930
pip install apkid
@@ -67,7 +58,7 @@ Usage
6758
[-o DIR]
6859
[FILE [FILE ...]]
6960

70-
APKiD - Android Application Identifier v2.1.0
61+
APKiD - Android Application Identifier v2.1.2
7162

7263
positional arguments:
7364
FILE apk, dex, or directory
@@ -155,7 +146,7 @@ PyPI:
155146

156147
.. code:: bash
157148
158-
./pre-release.py readme
149+
./prep-release.py readme
159150
rm -f dist/*
160151
python setup.py sdist bdist_wheel
161152
twine upload --repository-url https://upload.pypi.org/legacy/ dist/*

apkid/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"""
2727

2828
__title__ = 'apkid'
29-
__version__ = '2.1.1'
29+
__version__ = '2.1.2'
3030
__author__ = 'Caleb Fenton & Tim Strazzere'
3131
__license__ = 'GPL & Commercial'
3232
__copyright__ = 'Copyright (C) 2021 RedNaga'

0 commit comments

Comments
 (0)