From 9ec1f800439cb9653a2ba9c3cadb04aa7613b365 Mon Sep 17 00:00:00 2001 From: Joel Ferrier Date: Mon, 20 Feb 2017 23:35:39 -0800 Subject: [PATCH] bump version number --- margaritashotgun/__init__.py | 6 +++--- setup.py | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) 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',