diff --git a/CHANGES.txt b/CHANGES.txt index 13a76d58..b805aa0c 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,15 @@ +1.0a2 (2016-07-07) +------------------ + +Bugfixes +~~~~~~~~ + +- Removed `AI_ADDRCONFIG` from the call to `getaddrinfo`, this resolves an + issue whereby `getaddrinfo` wouldn't return any addresses to `bind` to on + hosts where there is no internet connection but localhost is requested to be + bound to. See https://github.com/Pylons/waitress/issues/131 for more + information. + 1.0a1 (2016-06-24) ------------------ diff --git a/setup.py b/setup.py index 13630ffd..ae6cb3f2 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ setup( name='waitress', - version='1.0a1', + version='1.0a2', author='Zope Foundation and Contributors', author_email='zope-dev@zope.org', maintainer="Pylons Project",