diff --git a/CHANGES.rst b/CHANGES.rst index d974704..d702fb9 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,24 @@ Release Notes ============= +.. _Release Notes_1.1.5: + +1.1.5 +===== + +.. _Release Notes_1.1.5_New Features: + +New Features +------------ + +- Add ``bake()`` method to ``HTTPServer`` for creating pre-configured + request expectation proxies (``BakedHTTPServer``). This allows sharing + common keyword arguments (e.g. ``method``, ``headers``) across multiple + ``expect_request()`` calls with last-wins merging semantics. + `#470 `_ + Contributed by `@HayaoSuzuki `_ + + .. _Release Notes_1.1.4: 1.1.4 diff --git a/doc/conf.py b/doc/conf.py index b929214..2dd7cac 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -68,7 +68,7 @@ # built documents. # # The short X.Y version. -version = "1.1.4" +version = "1.1.5" # The full version, including alpha/beta/rc tags. release = version diff --git a/pyproject.toml b/pyproject.toml index 54a6855..e191002 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pytest_httpserver" -version = "1.1.4" +version = "1.1.5" description = "pytest-httpserver is a httpserver for pytest" readme = "README.md" license = "MIT"