Skip to content

Commit

Permalink
Volatility 3 1.0.0-beta.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ikelos committed Oct 13, 2019
1 parent d7b1855 commit 97e41e2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion volatility/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def run(self):
determining the plugin to run and then running it."""
sys.stdout.write("Volatility 3 Framework {}\n".format(constants.PACKAGE_VERSION))

volatility.framework.require_interface_version(0, 0, 0)
volatility.framework.require_interface_version(1, 0, 0)

renderers = dict([(x.name.lower(), x) for x in framework.class_subclasses(text_renderer.CLIRenderer)])

Expand Down
2 changes: 1 addition & 1 deletion volatility/cli/volshell/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def run(self):
determining the plugin to run and then running it."""
sys.stdout.write("Volshell (Volatility 3 Framework) {}\n".format(constants.PACKAGE_VERSION))

framework.require_interface_version(0, 0, 0)
framework.require_interface_version(1, 0, 0)

parser = argparse.ArgumentParser(prog = 'volshell',
description = "A tool for interactivate forensic analysis of memory images")
Expand Down
2 changes: 1 addition & 1 deletion volatility/framework/constants/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"""Constant used to delimit table names from type names when referring to a symbol"""

# We use the SemVer 2.0.0 versioning scheme
VERSION_MAJOR = 0 # Number of releases of the library with a breaking change
VERSION_MAJOR = 1 # Number of releases of the library with a breaking change
VERSION_MINOR = 0 # Number of changes that only add to the interface
VERSION_PATCH = 0 # Number of changes that do not change the interface
VERSION_SUFFIX = "-beta.1"
Expand Down

0 comments on commit 97e41e2

Please sign in to comment.