diff --git a/volatility/cli/__init__.py b/volatility/cli/__init__.py index 2c1f444ad..61cb581cb 100644 --- a/volatility/cli/__init__.py +++ b/volatility/cli/__init__.py @@ -30,7 +30,7 @@ class CommandLine(object): ver = volatility.framework.version() sys.stdout.write("Volatility Framework 3 (version " + "{0}.{1}.{2}".format(ver[0], ver[1], ver[2]) + ")\n") - volatility.framework.require_version(4, 0, 0) + volatility.framework.require_version(0, 0, 0) # TODO: Get CLI config options volatility.framework.import_files(volatility.plugins) diff --git a/volatility/framework/__init__.py b/volatility/framework/__init__.py index 9a5f126dd..d94c0f5b8 100644 --- a/volatility/framework/__init__.py +++ b/volatility/framework/__init__.py @@ -17,7 +17,9 @@ import logging import os import sys -CURRENT = 4 # Number of releases of the library with any change +# We use the libtool library versioning + +CURRENT = 0 # Number of releases of the library with any change REVISION = 0 # Number of changes that don't affect the interface AGE = 0 # Number of consecutive versions of the interface the current version supports