Skip to content

Commit

Permalink
Release version 0.33.0 today
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin-b committed Oct 28, 2024
1 parent 4aa75d1 commit d737f01
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.33.0] - 2024-10-28
### Added
- Explicit support for python `3.13`.
- The following option is now available:
- `should_mock` (callable returning a boolean), defaulting to always returning `True`.
- Matching on the full multipart body can now be performed using `match_files` and `match_data` parameters.
- Matching on extensions (including timeout) can now be performed using `match_extensions` parameter.
- `should_mock` option (callable returning a boolean) is now available, defaulting to always returning `True`. Refer to documentation for more details.
- Matching on the full multipart body can now be performed using `match_files` and `match_data` parameters. Refer to documentation for more details.
- Matching on extensions (including timeout) can now be performed using `match_extensions` parameter. Refer to documentation for more details.

### Removed
- `non_mocked_hosts` option is not available anymore. Use `should_mock` instead as in the following sample:
Expand Down Expand Up @@ -395,7 +396,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- First release, should be considered as unstable for now as design might change.

[Unreleased]: https://github.com/Colin-b/pytest_httpx/compare/v0.32.0...HEAD
[Unreleased]: https://github.com/Colin-b/pytest_httpx/compare/v0.33.0...HEAD
[0.33.0]: https://github.com/Colin-b/pytest_httpx/compare/v0.32.0...v0.33.0
[0.32.0]: https://github.com/Colin-b/pytest_httpx/compare/v0.31.2...v0.32.0
[0.31.2]: https://github.com/Colin-b/pytest_httpx/compare/v0.31.1...v0.31.2
[0.31.1]: https://github.com/Colin-b/pytest_httpx/compare/v0.31.0...v0.31.1
Expand Down
2 changes: 1 addition & 1 deletion pytest_httpx/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# Major should be incremented in case there is a breaking change. (eg: 2.5.8 -> 3.0.0)
# Minor should be incremented in case there is an enhancement. (eg: 2.5.8 -> 2.6.0)
# Patch should be incremented in case there is a bug fix. (eg: 2.5.8 -> 2.5.9)
__version__ = "0.32.0"
__version__ = "0.33.0"

0 comments on commit d737f01

Please sign in to comment.