Skip to content

Commit

Permalink
Add versioning file
Browse files Browse the repository at this point in the history
  • Loading branch information
ydkhatri committed Sep 4, 2021
1 parent abe69ef commit 5626f8c
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ __pycache__/
*_compiled*
*$py.class
kill_pycache.bat

.DS_Store
libewf*


Expand Down
2 changes: 1 addition & 1 deletion extract_apfs_fs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]"

Expand Down
13 changes: 7 additions & 6 deletions ios_apt.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]"

Expand Down
2 changes: 1 addition & 1 deletion mac_apt.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]"

Expand Down
14 changes: 7 additions & 7 deletions mac_apt_artifact_only.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]"

Expand Down
2 changes: 1 addition & 1 deletion mac_apt_mounted_sys_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]"

Expand Down
1 change: 1 addition & 0 deletions version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__VERSION = "1.4.3.dev (20210904)"

0 comments on commit 5626f8c

Please sign in to comment.