From 7bb27bb66322fc564e14005d29cb6fddd76a0ab6 Mon Sep 17 00:00:00 2001 From: Bert JW Regeer Date: Tue, 10 Oct 2017 18:59:52 -0600 Subject: [PATCH] Prep for 1.1.0 --- CHANGES.txt | 19 +++++++++++++++++++ setup.py | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index 1b935ad4..e1726c6e 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,22 @@ +1.1.0 (2017-10-10) +------------------ + +Features +~~~~~~~~ + +- Waitress now has a __main__ and thus may be called with ``python -mwaitress`` + +Bugfixes +~~~~~~~~ + +- Waitress no longer allows lowercase HTTP verbs. This change was made to fall + in line with most HTTP servers. See https://github.com/Pylons/waitress/pull/170 + +- When receiving non-ascii bytes in the request URL, waitress will no longer + abruptly close the connection, instead returning a 400 Bad Request. See + https://github.com/Pylons/waitress/pull/162 and + https://github.com/Pylons/waitress/issues/64 + 1.0.2 (2017-02-04) ------------------ diff --git a/setup.py b/setup.py index 23f73d6a..3bda37d8 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ setup( name='waitress', - version='1.0.2', + version='1.1.0', author='Zope Foundation and Contributors', author_email='zope-dev@zope.org', maintainer="Pylons Project",