v0.17.2 release

This commit is contained in:
Sergey Shepelev
2015-04-03 04:28:56 +03:00
parent 828287dc22
commit ed3274df07
4 changed files with 16 additions and 4 deletions

View File

@@ -116,3 +116,6 @@ Thanks To
* Marc Abramowitz, fixing the README so it renders correctly on PyPI (GH-183)
* Shaun Stanworth, equal chance to acquire semaphore from different greenthreads (GH-136)
* Lior Neudorfer, Make sure SSL retries are done using the exact same data buffer
* Sean Dague, wsgi: Provide python logging compatibility
* Tim Simmons, Use _socket_nodns and select in dnspython support
* Antonio Cuni, fix fd double close on PyPy

8
NEWS
View File

@@ -1,3 +1,11 @@
0.17.2
======
* wsgi: Provide python logging compatibility; Thanks to Sean Dague
* greendns: fix premature connection closing in DNS proxy; Thanks to Tim Simmons
* greenio: correct fd close; Thanks to Antonio Cuni and Victor Sergeyev
* green.ssl: HTTPS client Python 2.7.9+ compatibility
* setup: tests.{isolated,manual} polluted top-level packages
0.17.1
======
* greendns: fix dns.name import and Python3 compatibility

View File

@@ -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.1.tar.gz">eventlet-0.17.1.tar.gz</a></li>
<a class="reference external" href="https://pypi.python.org/packages/source/e/eventlet/eventlet-0.17.2.tar.gz">eventlet-0.17.2.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>
@@ -74,11 +74,12 @@ pip install eventlet
<h3>Development</h3>
<ul>
<li><a class="reference external" target="_blank" href="https://bitbucket.org/eventlet/eventlet/">Mercurial on Bitbucket</a></li>
<li><a class="reference external" target="_blank" href="https://github.com/eventlet/eventlet/">Official Github mirror</a></li>
<li><a class="reference" target="_blank" href="https://github.com/eventlet/eventlet/">Eventlet on Github</a></li>
<li><a class="reference external" target="_blank" href="https://bitbucket.org/eventlet/eventlet/">Mercurial on Bitbucket</a>, "eventually consistent" mirror.</li>
</ul>
<p>Both repositories are equal and kept in sync.
You can use whichever you fancy for downloading, forking, reporting issues and submitting pull requests.</p>
<p>Mercurial repository used to be the main one, but most of the contribution and discussions happen on Github nowadays.</p>
<h4>Pull request policy</h4>
<ul>

View File

@@ -1,4 +1,4 @@
version_info = (0, 17, 1)
version_info = (0, 17, 2)
__version__ = '.'.join(map(str, version_info))
try: