Skip to content

Commit

Permalink
bump framework minor version
Browse files Browse the repository at this point in the history
  • Loading branch information
gcmoreira committed Dec 17, 2024
1 parent 02f17af commit e035faa
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion volatility3/framework/constants/_version.py
Original file line number Diff line number Diff line change
@@ -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 = ""

Expand Down
2 changes: 1 addition & 1 deletion volatility3/framework/plugins/linux/capabilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def astuple(self) -> Tuple:
class Capabilities(plugins.PluginInterface):
"""Lists process capabilities"""

_required_framework_version = (2, 0, 0)
_required_framework_version = (2, 13, 0)
_version = (1, 1, 0)

@classmethod
Expand Down
2 changes: 1 addition & 1 deletion volatility3/framework/plugins/linux/envars.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
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
Expand Down
2 changes: 1 addition & 1 deletion volatility3/framework/plugins/linux/psaux.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
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
Expand Down
2 changes: 1 addition & 1 deletion volatility3/framework/plugins/linux/pslist.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
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
Expand Down
2 changes: 1 addition & 1 deletion volatility3/framework/plugins/linux/psscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion volatility3/framework/plugins/linux/pstree.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e035faa

Please sign in to comment.