summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Shepelev <temotor@gmail.com>2015-02-25 06:25:18 +0300
committerSergey Shepelev <temotor@gmail.com>2015-02-25 06:25:18 +0300
commit84b535becafcdc932ab905061f5fa2fbea35dc74 (patch)
tree2b97ff5e2ad12fb7490746d4d006ad6c9dab885a
parent20a5645aba4fd8a65107eebbe605abb508f39c86 (diff)
downloadeventlet-84b535becafcdc932ab905061f5fa2fbea35dc74.tar.gz
v0.17.1 releasev0.17.1
-rw-r--r--NEWS6
-rw-r--r--doc/real_index.html2
-rw-r--r--eventlet/__init__.py2
3 files changed, 6 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 74e5cda..e05a8ab 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+0.17.1
+======
+* greendns: fix dns.name import and Python3 compatibility
+
0.17
====
* Full Python3 compatibility; Thanks to Jakub Stasiak
@@ -10,12 +14,10 @@
0.16.1
======
-
* Wheel build 0.16.0 incorrectly shipped removed module eventlet.util.
0.16.0
======
-
* Fix SSL socket wrapping and Python 2.7.9 compatibility; Thanks to Jakub Stasiak
* Fix monkey_patch() on Python 3; Thanks to Victor Stinner
* Fix "maximum recursion depth exceeded in GreenSocket.__del__"; Thanks to Jakub Stasiak
diff --git a/doc/real_index.html b/doc/real_index.html
index ef43620..c06bab1 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.17.0.tar.gz">eventlet-0.17.0.tar.gz</a></li>
+ <a class="reference external" href="https://pypi.python.org/packages/source/e/eventlet/eventlet-0.17.1.tar.gz">eventlet-0.17.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 dc09c8e..9e75e19 100644
--- a/eventlet/__init__.py
+++ b/eventlet/__init__.py
@@ -1,4 +1,4 @@
-version_info = (0, 17, 0)
+version_info = (0, 17, 1)
__version__ = '.'.join(map(str, version_info))
try: