Skip to content

Commit 3da7c88

Browse files
authored
Merge pull request #58 from thc202/bump-version
Prepare next dev iteration
2 parents 74a3d35 + bc1b279 commit 3da7c88

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
55

6+
## [Unreleased]
7+
8+
69
## [0.0.17] - 2020-10-14
710
### Added
811
- Add API for GraphQL add-on, version 0.2.0.
@@ -83,6 +86,7 @@ ensure it's automatically sent in all API requests.
8386
### Changed
8487
- Moved from the main `zaproxy` repository.
8588

89+
[Unreleased]: https://github.com/zaproxy/zap-api-python/compare/0.0.17...HEAD
8690
[0.0.17]: https://github.com/zaproxy/zap-api-python/compare/0.0.16...0.0.17
8791
[0.0.16]: https://github.com/zaproxy/zap-api-python/compare/0.0.15...0.0.16
8892
[0.0.15]: https://github.com/zaproxy/zap-api-python/compare/0.0.14...0.0.15

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@
2626
)
2727
setup(
2828
name="python-owasp-zap-v2.4",
29-
version="0.0.17",
29+
version="0.0.18",
3030
description="OWASP ZAP 2.9 API client",
3131
long_description="OWASP Zed Attack Proxy 2.9 API Python client (the 2.4 package name has been kept to make it easier to upgrade)",
3232
author="ZAP development team",
3333
author_email='',
3434
url="https://www.zaproxy.org/",
35-
download_url="https://github.com/zaproxy/zap-api-python/releases/tag/0.0.17",
35+
download_url="https://github.com/zaproxy/zap-api-python/releases/tag/0.0.18",
3636
platforms=['any'],
3737
license="ASL2.0",
3838
package_dir={

src/zapv2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"""
2121

2222
__docformat__ = 'restructuredtext'
23-
__version__ = '0.0.17'
23+
__version__ = '0.0.18'
2424

2525
import requests
2626
from requests.packages.urllib3.exceptions import InsecureRequestWarning

0 commit comments

Comments
 (0)