From a0dd5669bb1389529e367ae67a01194f1bfc66ff Mon Sep 17 00:00:00 2001 From: Colin-b Date: Mon, 17 Jan 2022 14:11:45 +0100 Subject: [PATCH] Release version 0.18.0 today --- CHANGELOG.md | 7 +++++-- pytest_httpx/version.py | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f24830f..c8a977d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +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.18.0] - 2022-01-17 ### Fixed - Callback are now executed as expected when there is a matching already sent response. ### Changed -- Registration order is now looking at responses and callbacks. Previous to this version, registration order was looking at responses before callbacks. +- Registration order is now looking at responses and callbacks. Prior to this version, registration order was looking at responses before callbacks. ### Removed - `httpx_mock.add_response` `data`, `files` and `boundary` parameters have been removed. It was deprecated since `0.17.0`. Refer to this version changelog entry for more details on how to update your code. @@ -203,7 +205,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.17.3...HEAD +[Unreleased]: https://github.com/Colin-b/pytest_httpx/compare/v0.18.0...HEAD +[0.18.0]: https://github.com/Colin-b/pytest_httpx/compare/v0.17.3...v0.18.0 [0.17.3]: https://github.com/Colin-b/pytest_httpx/compare/v0.17.2...v0.17.3 [0.17.2]: https://github.com/Colin-b/pytest_httpx/compare/v0.17.1...v0.17.2 [0.17.1]: https://github.com/Colin-b/pytest_httpx/compare/v0.17.0...v0.17.1 diff --git a/pytest_httpx/version.py b/pytest_httpx/version.py index 2722665..7b66864 100644 --- a/pytest_httpx/version.py +++ b/pytest_httpx/version.py @@ -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.17.3" +__version__ = "0.18.0"