Skip to content
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.5.0] - 2025-12-15
### Added
- Add the APIs of the following add-ons:
Expand Down Expand Up @@ -201,6 +203,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.5.0...HEAD
[0.5.0]: https://github.com/zaproxy/zap-api-python/compare/0.4.0...0.5.0
[0.4.0]: https://github.com/zaproxy/zap-api-python/compare/0.3.2...0.4.0
[0.3.2]: https://github.com/zaproxy/zap-api-python/compare/0.3.1...0.3.2
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.5.0"
version = "0.6.0"
description = "ZAP API Client"
readme = "README.md"
authors = ["ZAP Development Team <[email protected]>"]
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.5.0'
__version__ = '0.6.0'

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