Prep for 1.1.0
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 @@
 
 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",