Bump required version numbers

This commit is contained in:
Mike Auty
2025-02-19 23:51:06 +00:00
parent 054bb48157
commit 2fa0ce8e5c
4 changed files with 6 additions and 6 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 = 21 # Number of changes that only add to the interface
VERSION_MINOR = 22 # Number of changes that only add to the interface
VERSION_PATCH = 0 # Number of changes that do not change the interface
VERSION_SUFFIX = ""
+2 -2
View File
@@ -12,9 +12,9 @@ from volatility3.framework.symbols.linux import net
class Addr(plugins.PluginInterface):
"""Lists network interface information for all devices"""
_required_framework_version = (2, 0, 0)
_required_framework_version = (2, 22, 0)
_version = (1, 0, 0)
_version = (1, 0, 1)
@classmethod
def get_requirements(cls) -> List[interfaces.configuration.RequirementInterface]:
@@ -703,9 +703,9 @@ class NetfilterNetDevImp_4_14_to_latest(AbstractNetfilterNetDev):
class Netfilter(interfaces.plugins.PluginInterface):
"""Lists Netfilter hooks."""
_required_framework_version = (2, 0, 0)
_required_framework_version = (2, 22, 0)
_version = (1, 1, 0)
_version = (1, 1, 1)
_required_linux_utilities_modules_version = (1, 0, 0)
_required_linuxutils_version = (2, 1, 0)
@@ -22,7 +22,7 @@ vollog = logging.getLogger(__name__)
class SockHandlers(interfaces.configuration.VersionableInterface):
"""Handles several socket families extracting the sockets information."""
_required_framework_version = (2, 0, 0)
_required_framework_version = (2, 22, 0)
_version = (4, 0, 0)
_net_version_required = (1, 0, 0)