summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBert JW Regeer <bertjw@regeer.org>2017-10-10 18:59:52 -0600
committerBert JW Regeer <bertjw@regeer.org>2017-10-10 18:59:52 -0600
commit7bb27bb66322fc564e14005d29cb6fddd76a0ab6 (patch)
tree17f7f90a288c172d31ac7687a0b564a84b581dfb
parentc18aa5e24e8d96bb64c9454a626147f37a23f0f0 (diff)
downloadwaitress-1.1.0.tar.gz
Prep for 1.1.0v1.1.0
-rw-r--r--CHANGES.txt19
-rw-r--r--setup.py2
2 files changed, 20 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 1b935ad..e1726c6 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 23f73d6..3bda37d 100644
--- a/setup.py
+++ b/setup.py
@@ -34,7 +34,7 @@ testing_extras = [
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",