File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1212setup (
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 ,
Original file line number Diff line number Diff line change 44
55class 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 , ".." , ".." ])))
You can’t perform that action at this time.
0 commit comments