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 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"