v0.17.2 release
This commit is contained in:
3
AUTHORS
3
AUTHORS
@@ -116,3 +116,6 @@ Thanks To
|
|||||||
* Marc Abramowitz, fixing the README so it renders correctly on PyPI (GH-183)
|
* 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)
|
* 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
|
* 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
8
NEWS
@@ -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
|
0.17.1
|
||||||
======
|
======
|
||||||
* greendns: fix dns.name import and Python3 compatibility
|
* greendns: fix dns.name import and Python3 compatibility
|
||||||
|
@@ -54,7 +54,7 @@ pip install eventlet
|
|||||||
<p>Alternately, you can download the source tarball:</p>
|
<p>Alternately, you can download the source tarball:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>latest release from <a class="reference external" target="_blank" href="https://pypi.python.org/pypi/eventlet/">PyPi</a>:
|
<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>
|
<li>or <a class="reference external" href="https://github.com/eventlet/eventlet/archive/master.zip">latest development version</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
@@ -74,11 +74,12 @@ pip install eventlet
|
|||||||
<h3>Development</h3>
|
<h3>Development</h3>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li><a class="reference external" target="_blank" href="https://bitbucket.org/eventlet/eventlet/">Mercurial on Bitbucket</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://github.com/eventlet/eventlet/">Official Github mirror</a></li>
|
<li><a class="reference external" target="_blank" href="https://bitbucket.org/eventlet/eventlet/">Mercurial on Bitbucket</a>, "eventually consistent" mirror.</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>Both repositories are equal and kept in sync.
|
<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>
|
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>
|
<h4>Pull request policy</h4>
|
||||||
<ul>
|
<ul>
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
version_info = (0, 17, 1)
|
version_info = (0, 17, 2)
|
||||||
__version__ = '.'.join(map(str, version_info))
|
__version__ = '.'.join(map(str, version_info))
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
Reference in New Issue
Block a user