diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7dca81b..b7c9dac 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"1.0.1"} +{".":"2.0.0"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 6123791..6e9cee5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ 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.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.0.0](https://github.com/angryfoxx/httpx2-pytest/compare/v1.0.1...v2.0.0) (2026-09-04) + + +### ⚠ BREAKING CHANGES + +* the legacy httpx_mock fixture is removed to enable running this plugin alongside pytest-httpx + +### Added + +* drop the legacy httpx_mock fixture ([#52](https://github.com/angryfoxx/httpx2-pytest/issues/52)) ([a093d79](https://github.com/angryfoxx/httpx2-pytest/commit/a093d79110e3ba155349049ce2c418f572f42d34)) + ## [1.0.1](https://github.com/angryfoxx/httpx2-pytest/compare/v1.0.0...v1.0.1) (2026-05-22) diff --git a/pytest_httpx2/version.py b/pytest_httpx2/version.py index 284a8e9..501c455 100644 --- a/pytest_httpx2/version.py +++ b/pytest_httpx2/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__ = "1.0.1" # x-release-please-version +__version__ = "2.0.0" # x-release-please-version