Skip to content

Commit

Permalink
Update version (#152)
Browse files Browse the repository at this point in the history
* update version

* 0.3.0 works with both 0.5.0 and 0.6.0
  • Loading branch information
afeena authored Jul 20, 2018
1 parent 2bf22a5 commit 280c68f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from distutils.core import setup

setup(name='Snare',
version='0.2.0',
version='0.3.0',
description='Super Next generation Advanced Reactive honEypot',
author='MushMush Foundation',
author_email='[email protected]',
Expand Down
5 changes: 3 additions & 2 deletions snare/utils/snare_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@

class VersionManager:
def __init__(self):
self.version = "0.2.0"
self.version = "0.3.0"
self.version_mapper = {
"0.1.0": ["0.1.0", "0.4.0"],
"0.2.0": ["0.5.0", "0.5.0"]
"0.2.0": ["0.5.0", "0.5.0"],
"0.3.0": ["0.5.0", "0.6.0"]
}

def check_compatibility(self, tanner_version):
Expand Down

0 comments on commit 280c68f

Please sign in to comment.