From 8a42e9aff030f0762510019f4ee164348cc3444a Mon Sep 17 00:00:00 2001 From: Cserna Zsolt Date: Tue, 21 Jan 2025 20:30:19 +0100 Subject: [PATCH 1/2] Version bump to 1.1.1 --- doc/conf.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 79ed378..085af09 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -68,7 +68,7 @@ # built documents. # # The short X.Y version. -version = "1.1.0" +version = "1.1.1" # The full version, including alpha/beta/rc tags. release = version diff --git a/pyproject.toml b/pyproject.toml index 0e1f118..bfe593f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pytest_httpserver" -version = "1.1.0" +version = "1.1.1" description = "pytest-httpserver is a httpserver for pytest" authors = ["Zsolt Cserna "] license = "MIT" From 4d39888fb0a888b5ceaea7bfff8b3c10d7ced46d Mon Sep 17 00:00:00 2001 From: Cserna Zsolt Date: Tue, 21 Jan 2025 20:30:22 +0100 Subject: [PATCH 2/2] CHANGES.rst: add release notes for 1.1.1 --- CHANGES.rst | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 03e3587..875a6b6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,20 @@ Release Notes ============= +.. _Release Notes_1.1.1: + +1.1.1 +===== + +.. _Release Notes_1.1.1_New Features: + +New Features +------------ + +- Add a new ``expect`` method to the ``HTTPServer`` object which allows + developers to provide their own request matcher object. + + .. _Release Notes_1.1.0: 1.1.0