Skip to content

Commit

Permalink
Release 0.16.2
Browse files Browse the repository at this point in the history
Added
- Easier support for using HTTPX MockTransport. (PR #118)
- Support mixed case for `method__in` and `scheme__in` pattern lookups. (PR #113)

Fixed
- Handle missing path in URL pattern (PR #113)

Changed
- Refactored internal mocking vs `MockTransport`. (PR #112)

Removed
- Dropped raw request support when parsing patterns (PR #113)
  • Loading branch information
lundberg committed Nov 26, 2020
1 parent c58df1e commit 77e7bd8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.16.2] - 2020-11-26
### Added
- Easier support for using HTTPX MockTransport. (PR #118)
- Support mixed case for `method__in` and `scheme__in` pattern lookups. (PR #113)

### Fixed
- Handle missing path in URL pattern (PR #113)

### Changed
- Refactored internal mocking vs `MockTransport`. (PR #112)

### Removed
- Dropped raw request support when parsing patterns (PR #113)

## [0.16.1] - 2020-11-16
### Added
- Extended `url` pattern with support for `HTTPX` proxy url format. (PR #110)
Expand Down
2 changes: 1 addition & 1 deletion respx/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.16.1"
__version__ = "0.16.2"

0 comments on commit 77e7bd8

Please sign in to comment.