diff --git a/CHANGES.rst b/CHANGES.rst index 63ce6d4..1aa4991 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,20 @@ Release Notes ============= +.. _Release Notes_1.1.3: + +1.1.3 +===== + +.. _Release Notes_1.1.3_Bug Fixes: + +Bug Fixes +--------- + +- Run server threads with daemon flag, preventing shutdown issues. + `#411 `_ + + .. _Release Notes_1.1.2: 1.1.2 diff --git a/doc/conf.py b/doc/conf.py index c03738a..fa95fed 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -68,7 +68,7 @@ # built documents. # # The short X.Y version. -version = "1.1.2" +version = "1.1.3" # The full version, including alpha/beta/rc tags. release = version diff --git a/pyproject.toml b/pyproject.toml index e941fae..364b399 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pytest_httpserver" -version = "1.1.2" +version = "1.1.3" description = "pytest-httpserver is a httpserver for pytest" authors = ["Zsolt Cserna "] license = "MIT"