bumped MINOR_VERSION to 2.5.2 after changes, and updated dependent thrdscan plugin's required version to this

This commit is contained in:
RuBublik
2023-07-07 20:22:58 +03:00
parent 5d32ca542c
commit 524ff59107
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ BANG = "!"
# We use the SemVer 2.0.0 versioning scheme
VERSION_MAJOR = 2 # Number of releases of the library with a breaking change
VERSION_MINOR = 4 # Number of changes that only add to the interface
VERSION_MINOR = 5 # Number of changes that only add to the interface
VERSION_PATCH = 2 # Number of changes that do not change the interface
VERSION_SUFFIX = ""
@@ -17,8 +17,8 @@ vollog = logging.getLogger(__name__)
class ThrdScan(interfaces.plugins.PluginInterface, timeliner.TimeLinerInterface):
"""Scans for windows threads."""
# cuz installed Framework interface version 2
_required_framework_version = (2, 0, 0)
# version 2.5.2 adds support for scanning for 'Ethread' structures by pool tags
_required_framework_version = (2, 5, 2)
_version = (1, 0, 0)
@classmethod