bumped version constants to mark change of interface (add of support for ETHREAD)

This commit is contained in:
RuBublik
2024-01-09 00:16:18 +02:00
parent 550112b848
commit 7c37012118
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -44,8 +44,8 @@ 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 = 5 # Number of changes that only add to the interface
VERSION_PATCH = 1 # Number of changes that do not change the interface
VERSION_MINOR = 6 # Number of changes that only add to the interface
VERSION_PATCH = 0 # Number of changes that do not change the interface
VERSION_SUFFIX = ""
# TODO: At version 2.0.0, remove the symbol_shift feature
@@ -17,8 +17,8 @@ vollog = logging.getLogger(__name__)
class ThrdScan(interfaces.plugins.PluginInterface, timeliner.TimeLinerInterface):
"""Scans for windows threads."""
# version 2.5.0 adds support for scanning for 'Ethread' structures by pool tags
_required_framework_version = (2, 5, 0)
# version 2.6.0 adds support for scanning for 'Ethread' structures by pool tags
_required_framework_version = (2, 6, 0)
_version = (1, 0, 0)
@classmethod