From db47ab773440c300329ab0fd65bec8247b71adf5 Mon Sep 17 00:00:00 2001 From: thc202 Date: Tue, 4 Jun 2024 15:14:35 +0100 Subject: [PATCH] Prepare next dev iteration Update version and changelog. Signed-off-by: thc202 --- CHANGELOG.md | 3 +++ pyproject.toml | 2 +- src/zapv2/__init__.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c59c464..5119d09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). +## [Unreleased] + ## [0.3.2] - 2024-06-04 ### Fixed - Return the whole response from `stats.stats`. @@ -179,6 +181,7 @@ ensure it's automatically sent in all API requests. ### Changed - Moved from the main `zaproxy` repository. +[Unreleased]: https://github.com/zaproxy/zap-api-python/compare/0.3.2...HEAD [0.3.2]: https://github.com/zaproxy/zap-api-python/compare/0.3.1...0.3.2 [0.3.1]: https://github.com/zaproxy/zap-api-python/compare/0.3.0...0.3.1 [0.3.0]: https://github.com/zaproxy/zap-api-python/compare/0.2.0...0.3.0 diff --git a/pyproject.toml b/pyproject.toml index bfd7c4e..c1d9137 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "zaproxy" # Ensure __version__ in src/zapv2/__init__.py matches. -version = "0.3.2" +version = "0.4.0" description = "ZAP API Client" readme = "README.md" authors = ["ZAP Development Team "] diff --git a/src/zapv2/__init__.py b/src/zapv2/__init__.py index b1a9e77..86cdc4c 100644 --- a/src/zapv2/__init__.py +++ b/src/zapv2/__init__.py @@ -20,7 +20,7 @@ """ __docformat__ = 'restructuredtext' -__version__ = '0.3.2' +__version__ = '0.4.0' import requests from requests.packages.urllib3.exceptions import InsecureRequestWarning