Skip to content

Commit 2ff2ec6

Browse files
bump
1 parent 4eec66e commit 2ff2ec6

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ make test
101101
```
102102

103103
## Version History
104+
* 2025-03-23: v2.5.3 - Added ELF ABI to SmdaReport info, upgraded DelphiReSym to handle Delphi 13, slight performance improvements by removing redundant label extraction. (THX: @r0ny123)
104105
* 2025-01-16: v2.5.2 - Fixed bug in IdaInterface where binary data was unproperly extracted.
105106
* 2025-01-16: v2.5.1 - Reducing calls to lief by caching the object. (THX: @r0ny123)
106107
* 2025-01-16: v2.5.0 - Introduced Rust symbol extraction and demangling. (THX: @r0ny123)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
setup(
1313
name="smda",
1414
# note to self: always change this in config as well.
15-
version="2.5.2",
15+
version="2.5.3",
1616
description="A recursive disassmbler optimized for CFG recovery from memory dumps. Based on capstone.",
1717
long_description_content_type="text/markdown",
1818
long_description=long_description,

smda/SmdaConfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
class SmdaConfig:
66
# note to self: always change this in setup.py as well!
7-
VERSION = "2.5.2"
7+
VERSION = "2.5.3"
88
ESCAPER_DOWNWARD_COMPATIBILITY = "1.13.16"
99
CONFIG_FILE_PATH = str(os.path.abspath(__file__))
1010
PROJECT_ROOT = str(os.path.abspath(os.sep.join([CONFIG_FILE_PATH, "..", ".."])))

0 commit comments

Comments
 (0)