Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare next dev iteration #115

Merged
merged 1 commit into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <zaproxy-develop@googlegroups.com>"]
Expand Down
2 changes: 1 addition & 1 deletion src/zapv2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""

__docformat__ = 'restructuredtext'
__version__ = '0.3.2'
__version__ = '0.4.0'

import requests
from requests.packages.urllib3.exceptions import InsecureRequestWarning
Expand Down