summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS6
-rw-r--r--doc/real_index.html2
-rw-r--r--eventlet/__init__.py2
3 files changed, 7 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 35c1c8f..a6aced6 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+0.18.1
+======
+* patcher: Fix AttributeError in subprocess communicate()
+* greenio: Fix "TypeError: an integer is required" in sendto()
+
0.18.0
======
* greenio: Fixed a bug that could cause send() to start an endless loop on
@@ -34,7 +39,6 @@
to Phus Lu
* backdoor: Added Unix and IPv6 socket support; Thanks to Eric Urban
-
Backwards incompatible:
* monkey patching: The following select methods and selector classes are now
diff --git a/doc/real_index.html b/doc/real_index.html
index 092e5ff..1841447 100644
--- a/doc/real_index.html
+++ b/doc/real_index.html
@@ -54,7 +54,7 @@ pip install eventlet
<p>Alternately, you can download the source tarball:</p>
<ul>
<li>latest release from <a class="reference external" target="_blank" href="https://pypi.python.org/pypi/eventlet/">PyPi</a>:
- <a class="reference external" href="https://pypi.python.org/packages/source/e/eventlet/eventlet-0.18.0.tar.gz">eventlet-0.18.0.tar.gz</a></li>
+ <a class="reference external" href="https://pypi.python.org/packages/source/e/eventlet/eventlet-0.18.1.tar.gz">eventlet-0.18.1.tar.gz</a></li>
<li>or <a class="reference external" href="https://github.com/eventlet/eventlet/archive/master.zip">latest development version</a></li>
</ul>
diff --git a/eventlet/__init__.py b/eventlet/__init__.py
index 2b52955..11bf830 100644
--- a/eventlet/__init__.py
+++ b/eventlet/__init__.py
@@ -1,4 +1,4 @@
-version_info = (0, 18, 0)
+version_info = (0, 18, 1)
__version__ = '.'.join(map(str, version_info))
try: