diff --git a/CHANGES.rst b/CHANGES.rst index 1aa4991..d974704 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,30 @@ Release Notes ============= +.. _Release Notes_1.1.4: + +1.1.4 +===== + +.. _Release Notes_1.1.4_New Features: + +New Features +------------ + +- More robust server startup by checking server readiness (disabled by + default). + `#462 `_ + + +.. _Release Notes_1.1.4_Deprecation Notes: + +Deprecation Notes +----------------- + +- Python 3.9 has been deprecated as it reached EOL 2025-10-31. While the code + may work on this version, there will be no CI tests running on it. + + .. _Release Notes_1.1.3: 1.1.3 diff --git a/doc/conf.py b/doc/conf.py index fa95fed..b929214 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -68,7 +68,7 @@ # built documents. # # The short X.Y version. -version = "1.1.3" +version = "1.1.4" # The full version, including alpha/beta/rc tags. release = version diff --git a/pyproject.toml b/pyproject.toml index 8496c65..54a6855 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pytest_httpserver" -version = "1.1.3" +version = "1.1.4" description = "pytest-httpserver is a httpserver for pytest" readme = "README.md" license = "MIT"