diff options
-rw-r--r-- | CHANGES.txt | 9 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 8 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index c254e85..01fe6f3 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,5 @@ -1.3.0b0 (2019-04-11) --------------------- +1.3.0 (2019-04-22) +------------------ Deprecations ~~~~~~~~~~~~ @@ -35,6 +35,11 @@ Features Bugfixes ~~~~~~~~ +- Upon receiving a request that does not include HTTP/1.0 or HTTP/1.1 we will + no longer set the version to the string value "None". See + https://github.com/Pylons/waitress/pull/252 and + https://github.com/Pylons/waitress/issues/110 + - When a client closes a socket unexpectedly there was potential for memory leaks in which data was written to the buffers after they were closed, causing them to reopen. @@ -34,7 +34,7 @@ testing_extras = [ setup( name='waitress', - version='1.3.0b0', + version='1.3.0', author='Zope Foundation and Contributors', author_email='zope-dev@zope.org', maintainer="Pylons Project", |