diff --git a/margaritashotgun/__init__.py b/margaritashotgun/__init__.py index e74d8c6..8be8a03 100644 --- a/margaritashotgun/__init__.py +++ b/margaritashotgun/__init__.py @@ -1,9 +1,9 @@ +__author__ = 'Joel Ferrier' +__version__ = '0.4.0' + import logging from margaritashotgun.client import Client -__author__ = 'Joel Ferrier' -__version__ = '0.3.1' - def set_stream_logger(name='margaritashotgun', level=logging.INFO, format_string=None): diff --git a/setup.py b/setup.py index 98cd814..c833049 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ def run(self): _install.run(self) setup(name="margaritashotgun", - version="0.3.1", + version="0.4.0", author="Joel Ferrier", author_email="joel@ferrier.io", packages=["margaritashotgun", "margaritashotgun/util"], @@ -17,7 +17,7 @@ def run(self): description="Remote memory aquisition wrapper for LiME", scripts=['bin/margaritashotgun'], url="https://github.com/ThreatResponse/margaritashotgun", - download_url="https://github.com/ThreatResponse/margaritashotgun/archive/v0.3.1.tar.gz", + download_url="https://github.com/ThreatResponse/margaritashotgun/archive/v0.4.0.tar.gz", use_2to3=True, install_requires=['boto3>=1.3.0', 'paramiko>=1.16.0',