Skip to content

Commit

Permalink
Adopting semver
Browse files Browse the repository at this point in the history
  • Loading branch information
Aidan Marlin committed Apr 20, 2015
1 parent 2294f58 commit 0c4c00c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
autopwn v0.12.0 - 20150420 (with thanks to berdario)

* This is the last version of autopwn which will be written
in Python2. No new features will be written for autopwn
on Python2, only bug fixes will be backported.
* autopwn can now be installed by pip
* Adopting semver (http://semver.org/)

autopwn v0.11 - 20150417

* Added experimental cookie support for tools. Currently
Expand Down
6 changes: 3 additions & 3 deletions autopwn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def __init__(self, config, directory, log_filename, log_type, log_string):
sys.exit(1)
try:
if config.log_started != True:
log_file.write("## autopwn v0.11 command output\n")
log_file.write("## autopwn v0.12.0 command output\n")
log_file.write("## Started logging at " + date_time + "...\n")
config.log_started = True
except:
Expand Down Expand Up @@ -152,7 +152,7 @@ def __init__(self, config, args, assessment):
if tool['name'] in assessment['tools']:
config.tool_subset.append(tool)

print "autopwn v0.11 by Aidan Marlin"
print "autopwn v0.12.0 by Aidan Marlin"
print "email: aidan [dot] marlin [at] nccgroup [dot] com"
print

Expand Down Expand Up @@ -389,7 +389,7 @@ def __init__(self, display_text, file_descriptor):

def display_help(self, file_descriptor):
# Not doing anything with file_descriptor yet
print "autopwn v0.11"
print "autopwn v0.12.0"
print "By Aidan Marlin"
print "Email: aidan [dot] marlin [at] nccgroup [dot] com"
print
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='autopwn',
version='0.11.0',
version='0.12.0',
description='Specify pentest targets and run sets of tools against them',
long_description=long_desc,
author='Aidan Marlin',
Expand Down

0 comments on commit 0c4c00c

Please sign in to comment.