diff --git a/config/dpkg/changelog b/config/dpkg/changelog index ffae3ae2ce..c2957b2b09 100644 --- a/config/dpkg/changelog +++ b/config/dpkg/changelog @@ -2,4 +2,4 @@ python-plaso (1.2.1-1) unstable; urgency=low * Auto-generated - -- Log2Timeline Sun, 26 Apr 2015 16:18:54 +0200 + -- Log2Timeline Mon, 27 Apr 2015 06:27:27 +0200 diff --git a/plaso/__init__.py b/plaso/__init__.py index 08f8402011..f13398d2f0 100644 --- a/plaso/__init__.py +++ b/plaso/__init__.py @@ -3,7 +3,7 @@ __version__ = '1.2.1' VERSION_DEV = True -VERSION_DATE = '20150426' +VERSION_DATE = '20150427' def GetVersion(): diff --git a/plaso/dependencies.py b/plaso/dependencies.py index 160a349467..9008231f51 100644 --- a/plaso/dependencies.py +++ b/plaso/dependencies.py @@ -379,6 +379,7 @@ def CheckTestDependencies(latest_version_check=False): if not CheckDependencies(latest_version_check): return False + print u'Checking availability and versions of plaso test dependencies.' for values in PYTHON_TEST_DEPENDENCIES: if not CheckPythonModule( values[0], values[1], values[2], maximum_version=values[3]): diff --git a/utils/prep_dist.sh b/utils/prep_dist.sh index 33d344a621..aa52ca052e 100755 --- a/utils/prep_dist.sh +++ b/utils/prep_dist.sh @@ -39,7 +39,7 @@ SED_SCRIPT=" sed -i"~" -e "${SED_SCRIPT}" plaso/frontend/presets.py -sed -i"~" '/hachoir_/,/^$/d' utils/check_dependencies.py +sed -i"~" '/hachoir_/,/^$/d' plaso/dependencies.py exit ${EXIT_SUCCESS};