v0.17.3 release
This commit is contained in:
4
AUTHORS
4
AUTHORS
@@ -11,7 +11,7 @@ Contributors
|
|||||||
------------
|
------------
|
||||||
* AG Projects
|
* AG Projects
|
||||||
* Chris AtLee
|
* Chris AtLee
|
||||||
* R\. Tyler Ballance
|
* R. Tyler Ballance
|
||||||
* Denis Bilenko
|
* Denis Bilenko
|
||||||
* Mike Barton
|
* Mike Barton
|
||||||
* Patrick Carlisle
|
* Patrick Carlisle
|
||||||
@@ -38,6 +38,7 @@ Contributors
|
|||||||
* Aldona Majorek
|
* Aldona Majorek
|
||||||
* Victor Sergeyev
|
* Victor Sergeyev
|
||||||
* David Szotten
|
* David Szotten
|
||||||
|
* Victor Stinner
|
||||||
|
|
||||||
Linden Lab Contributors
|
Linden Lab Contributors
|
||||||
-----------------------
|
-----------------------
|
||||||
@@ -111,7 +112,6 @@ Thanks To
|
|||||||
* Steven Hardy
|
* Steven Hardy
|
||||||
* Stuart McLaren
|
* Stuart McLaren
|
||||||
* Tomaz Muraus
|
* Tomaz Muraus
|
||||||
* Victor Stinner
|
|
||||||
* ChangBo Guo(gcb), fixing typos in the documentation (GH-194)
|
* ChangBo Guo(gcb), fixing typos in the documentation (GH-194)
|
||||||
* 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)
|
||||||
|
5
NEWS
5
NEWS
@@ -1,3 +1,8 @@
|
|||||||
|
0.17.3
|
||||||
|
======
|
||||||
|
* green.thread: Python3.3+ fixes; Thanks to Victor Stinner
|
||||||
|
* Semaphore.acquire() accepts timeout=-1; Thanks to Victor Stinner
|
||||||
|
|
||||||
0.17.2
|
0.17.2
|
||||||
======
|
======
|
||||||
* wsgi: Provide python logging compatibility; Thanks to Sean Dague
|
* wsgi: Provide python logging compatibility; Thanks to Sean Dague
|
||||||
|
@@ -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.2.tar.gz">eventlet-0.17.2.tar.gz</a></li>
|
<a class="reference external" href="https://pypi.python.org/packages/source/e/eventlet/eventlet-0.17.3.tar.gz">eventlet-0.17.3.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>
|
||||||
|
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
version_info = (0, 17, 2)
|
version_info = (0, 17, 3)
|
||||||
__version__ = '.'.join(map(str, version_info))
|
__version__ = '.'.join(map(str, version_info))
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
Reference in New Issue
Block a user