Skip to content

Commit d04ebec

Browse files
bump
1 parent 3d3e203 commit d04ebec

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-01-16: v2.5.1 - Reducing calls to lief by caching the object. (THX: @r0ny123)
104105
* 2025-01-16: v2.5.0 - Introduced Rust symbol extraction and demangling. (THX: @r0ny123)
105106
* 2025-01-16: v2.4.7 - Improved reliability of exception handler candidate extraction. (THX: @r0ny123)
106107
* 2025-01-07: v2.4.6 - Fixed version check for IDA compatibility decision

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.0",
15+
version="2.5.1",
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.0"
7+
VERSION = "2.5.1"
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)