From 5626f8ce1d1c220b542ce99ea9a5a7da37476454 Mon Sep 17 00:00:00 2001 From: Yogesh Khatri Date: Sat, 4 Sep 2021 11:00:53 +1000 Subject: [PATCH] Add versioning file --- .gitignore | 2 +- extract_apfs_fs.py | 2 +- ios_apt.py | 13 +++++++------ mac_apt.py | 2 +- mac_apt_artifact_only.py | 14 +++++++------- mac_apt_mounted_sys_data.py | 2 +- version.py | 1 + 7 files changed, 19 insertions(+), 17 deletions(-) create mode 100644 version.py diff --git a/.gitignore b/.gitignore index 2e288d1..b9065a0 100644 --- a/.gitignore +++ b/.gitignore @@ -9,7 +9,7 @@ __pycache__/ *_compiled* *$py.class kill_pycache.bat - +.DS_Store libewf* diff --git a/extract_apfs_fs.py b/extract_apfs_fs.py index 3b93bcf..a55e107 100644 --- a/extract_apfs_fs.py +++ b/extract_apfs_fs.py @@ -35,8 +35,8 @@ from plugins.helpers.disk_report import * from plugin import * from uuid import UUID +from version import __VERSION -__VERSION = "1.4.2.dev" __PROGRAMNAME = "APFS metadata extract Tool" __EMAIL = "yogesh@swiftforensics.com" diff --git a/ios_apt.py b/ios_apt.py index 9097fa3..0a60fb8 100644 --- a/ios_apt.py +++ b/ios_apt.py @@ -15,18 +15,19 @@ NOTE: This currently works only on Python3.7 or higher. ''' -import sys -import os import argparse +import logging +import os +import sys +import textwrap +import time import traceback import plugins.helpers.macinfo as macinfo + from plugins.helpers.writer import * -import logging -import time -import textwrap from plugin import * +from version import __VERSION -__VERSION = "1.4.2.dev" __PROGRAMNAME = "iOS Artifact Parsing Tool" __EMAIL = "yogesh@swiftforensics.com" diff --git a/mac_apt.py b/mac_apt.py index 83b2142..febdf3a 100644 --- a/mac_apt.py +++ b/mac_apt.py @@ -35,8 +35,8 @@ from plugins.helpers.disk_report import * from plugin import * from uuid import UUID +from version import __VERSION -__VERSION = "1.4.2.dev" __PROGRAMNAME = "macOS Artifact Parsing Tool" __EMAIL = "yogesh@swiftforensics.com" diff --git a/mac_apt_artifact_only.py b/mac_apt_artifact_only.py index 3c0602e..911ddc7 100644 --- a/mac_apt_artifact_only.py +++ b/mac_apt_artifact_only.py @@ -18,18 +18,18 @@ NOTE: This currently works only on Python3.7 or higher. ''' -import sys -import os import argparse -import traceback -import plugins.helpers.macinfo as macinfo -from plugins.helpers.writer import * import logging -import time +import os +import plugins.helpers.macinfo as macinfo +import sys import textwrap +import time +import traceback from plugin import * +from plugins.helpers.writer import * +from version import __VERSION -__VERSION = "1.4.2.dev" __PROGRAMNAME = "macOS Artifact Parsing Tool - Artifact Only mode" __EMAIL = "yogesh@swiftforensics.com" diff --git a/mac_apt_mounted_sys_data.py b/mac_apt_mounted_sys_data.py index 7174437..f7c5c94 100644 --- a/mac_apt_mounted_sys_data.py +++ b/mac_apt_mounted_sys_data.py @@ -31,8 +31,8 @@ from plugins.helpers.writer import * from plugins.helpers.disk_report import * from plugin import * +from version import __VERSION -__VERSION = "1.4.2.dev" __PROGRAMNAME = "macOS Artifact Parsing Tool - SYS DATA Mounted mode" __EMAIL = "yogesh@swiftforensics.com" diff --git a/version.py b/version.py new file mode 100644 index 0000000..668683b --- /dev/null +++ b/version.py @@ -0,0 +1 @@ +__VERSION = "1.4.3.dev (20210904)" \ No newline at end of file