v0.17.3 release

This commit is contained in:
Sergey Shepelev
2015-04-09 16:25:49 +03:00
parent 2e81481370
commit bc0a59f8ef
5 changed files with 13 additions and 8 deletions

View File

@@ -11,7 +11,7 @@ Contributors
------------
* AG Projects
* Chris AtLee
* R\. Tyler Ballance
* R. Tyler Ballance
* Denis Bilenko
* Mike Barton
* Patrick Carlisle
@@ -38,6 +38,7 @@ Contributors
* Aldona Majorek
* Victor Sergeyev
* David Szotten
* Victor Stinner
Linden Lab Contributors
-----------------------
@@ -111,7 +112,6 @@ Thanks To
* Steven Hardy
* Stuart McLaren
* Tomaz Muraus
* Victor Stinner
* ChangBo Guo(gcb), fixing typos in the documentation (GH-194)
* 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)

5
NEWS
View File

@@ -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
======
* wsgi: Provide python logging compatibility; Thanks to Sean Dague

View File

@@ -2,7 +2,7 @@
cd "$( dirname "${BASH_SOURCE[0]}" )/.."
if [[ ! -d venv-release ]]; then
virtualenv venv-release
echo '*' >venv-release/.gitignore
echo '*' >venv-release/.gitignore
venv-release/bin/pip install wheel sphinx
fi
. $PWD/venv-release/bin/activate
@@ -33,10 +33,10 @@ main() {
fi
bin/build-website.bash
git push origin master
git push origin master
git push --tags
git push origin gh-pages
git push origin gh-pages
}
confirm() {

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.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>
</ul>

View File

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