bump framework minor version

This commit is contained in:
Gustavo Moreira
2024-12-18 09:55:13 +11:00
parent 02f17af8a6
commit e035faa323
7 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
# We use the SemVer 2.0.0 versioning scheme
VERSION_MAJOR = 2 # Number of releases of the library with a breaking change
VERSION_MINOR = 12 # Number of changes that only add to the interface
VERSION_MINOR = 13 # Number of changes that only add to the interface
VERSION_PATCH = 0 # Number of changes that do not change the interface
VERSION_SUFFIX = ""
@@ -49,7 +49,7 @@ class CapabilitiesData:
class Capabilities(plugins.PluginInterface):
"""Lists process capabilities"""
_required_framework_version = (2, 0, 0)
_required_framework_version = (2, 13, 0)
_version = (1, 1, 0)
@classmethod
@@ -16,7 +16,7 @@ vollog = logging.getLogger(__name__)
class Envars(plugins.PluginInterface):
"""Lists processes with their environment variables"""
_required_framework_version = (2, 0, 0)
_required_framework_version = (2, 13, 0)
_version = (1, 1, 0)
@classmethod
+1 -1
View File
@@ -14,7 +14,7 @@ from volatility3.plugins.linux import pslist
class PsAux(plugins.PluginInterface):
"""Lists processes with their command line arguments"""
_required_framework_version = (2, 0, 0)
_required_framework_version = (2, 13, 0)
_version = (1, 1, 0)
@classmethod
@@ -17,7 +17,7 @@ from volatility3.plugins.linux import elfs
class PsList(interfaces.plugins.PluginInterface, timeliner.TimeLinerInterface):
"""Lists the processes present in a particular linux memory image."""
_required_framework_version = (2, 0, 0)
_required_framework_version = (2, 13, 0)
_version = (3, 1, 0)
@classmethod
@@ -27,7 +27,7 @@ class DescExitStateEnum(Enum):
class PsScan(interfaces.plugins.PluginInterface):
"""Scans for processes present in a particular linux image."""
_required_framework_version = (2, 0, 0)
_required_framework_version = (2, 13, 0)
_version = (1, 1, 0)
@classmethod
@@ -12,7 +12,7 @@ class PsTree(interfaces.plugins.PluginInterface):
"""Plugin for listing processes in a tree based on their parent process
ID."""
_required_framework_version = (2, 0, 0)
_required_framework_version = (2, 13, 0)
_version = (1, 1, 0)
@classmethod