Skip to content

Commit 5588331

Browse files
bump
1 parent 70ecef4 commit 5588331

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ To take full advantage of SMDA's capabilities, make sure to (optionally) install
5656
* pdbparse (currently as fork from https://github.com/VPaulV/pdbparse to support Python3)
5757

5858
## Version History
59-
* 2025-02-26: v2.0.1 - Adjusting relative import.
59+
* 2025-02-26: v2.0.2 - Adjusting relative import, adding init file.
6060
* 2025-02-25: v2.0.0 - Initial experimental support for CIL (.NET) disassembly.
6161
* 2025-02-24: v1.14.3 - PicHashing can now be disabled via SmdaConfig to save some processing time. (THX to @Nalexander-hanel!)
6262
* 2025-02-24: v1.14.2 - We are Python 3.8+ compatible again (changed UTC usage) and (DWARF) PE symbols for PE files should be extracted again (THX to @N0fix for the update!)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
setup(
2020
name='smda',
2121
# note to self: always change this in config as well.
22-
version='2.0.1',
22+
version='2.0.2',
2323
description='A recursive disassmbler optimized for CFG recovery from memory dumps. Based on capstone.',
2424
long_description_content_type="text/markdown",
2525
long_description=long_description,

smda/SmdaConfig.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class SmdaConfig(object):
66

77
# note to self: always change this in setup.py as well!
8-
VERSION = "2.0.1"
8+
VERSION = "2.0.2"
99
ESCAPER_DOWNWARD_COMPATIBILITY = "1.13.16"
1010
CONFIG_FILE_PATH = str(os.path.abspath(__file__))
1111
PROJECT_ROOT = str(os.path.abspath(os.sep.join([CONFIG_FILE_PATH, "..", ".."])))

0 commit comments

Comments
 (0)