Set the version back, given we're early enough to do so.

This commit is contained in:
Mike Auty
2016-11-01 00:41:20 +00:00
parent 667014a1fd
commit dc375024b2
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -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)
+3 -1
View File
@@ -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