From 2bb93eb2c1727ac3cdeaf0f3184f3daded011de2 Mon Sep 17 00:00:00 2001 From: grunny Date: Mon, 29 Aug 2016 01:03:45 +1000 Subject: [PATCH 1/2] Upgrade python-owasp-zap-v2.4 dependency to 0.0.8 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3092839..8551e43 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ ], install_requires=[ 'click==4.0', - 'python-owasp-zap-v2.4==0.0.7', + 'python-owasp-zap-v2.4==0.0.8', 'tabulate==0.7.5', 'termcolor==1.1.0', ], From 1b4b8db12e04268f32641d53c8a15331841ff5b6 Mon Sep 17 00:00:00 2001 From: grunny Date: Mon, 29 Aug 2016 01:08:30 +1000 Subject: [PATCH 2/2] Update version to v0.3.0 --- HISTORY.rst | 6 ++++++ zapcli/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index b3a0c69..b7552a7 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,12 @@ Release History =============== +v0.3.0 (2016-08-28) +------------------- +* Add a status command to check if ZAP is running (#14) +* Raise an error when the ZAP executable is not found (#11) +* Upgrade python-owasp-zap-v2.4 dependency to 0.0.8 + v0.2.1 (2016-05-09) ------------------- * Handle errors when running the Spider (#9) diff --git a/zapcli/__init__.py b/zapcli/__init__.py index 2eaa17b..ff03ddc 100644 --- a/zapcli/__init__.py +++ b/zapcli/__init__.py @@ -4,4 +4,4 @@ .. moduleauthor:: Daniel Grunwell (grunny) """ -__version__ = '0.2.1' +__version__ = '0.3.0'