Skip to content

Commit

Permalink
change version string
Browse files Browse the repository at this point in the history
  • Loading branch information
naaya17 committed Nov 6, 2020
1 parent 4f3ea2f commit 4b0531d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/carpe_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class CarpeTool(extraction_tool.ExtractionTool,
"""
NAME = 'CARPE Forensics'
VERSION = '20200903'
VERSION = '20201106'
DESCRIPTION = textwrap.dedent('\n'.join([
'',
'CARPE Forensics',
Expand Down
3 changes: 2 additions & 1 deletion tools/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ class CLITool(object):
_PREFERRED_ENCODING = 'utf-8'

NAME = ''
VERSION = ''

def __init__(self, input_reader=None, output_writer=None):
super(CLITool, self).__init__()
Expand All @@ -35,7 +36,7 @@ def __init__(self, input_reader=None, output_writer=None):

def GetVersionInformation(self):
# TODO: 나중에 버전 추가해야함
return 'carpe - {0:s} version {1:s}'.format(self.NAME, "2020-02-20")
return 'carpe - {0:s} version {1:s}'.format(self.NAME, self.VERSION)

def AddBasicOptions(self, argument_group):
version_string = self.GetVersionInformation()
Expand Down

0 comments on commit 4b0531d

Please sign in to comment.