diff --git a/AUTHORS b/AUTHORS index acfd7b3..4d78548 100644 --- a/AUTHORS +++ b/AUTHORS @@ -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) diff --git a/NEWS b/NEWS index 5756b1a..98c9402 100644 --- a/NEWS +++ b/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 ====== * wsgi: Provide python logging compatibility; Thanks to Sean Dague diff --git a/bin/release b/bin/release index 539b0b2..6480e7a 100755 --- a/bin/release +++ b/bin/release @@ -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() { diff --git a/doc/real_index.html b/doc/real_index.html index 4732407..7723fac 100644 --- a/doc/real_index.html +++ b/doc/real_index.html @@ -54,7 +54,7 @@ pip install eventlet

Alternately, you can download the source tarball:

diff --git a/eventlet/__init__.py b/eventlet/__init__.py index 987012d..fad9c1f 100644 --- a/eventlet/__init__.py +++ b/eventlet/__init__.py @@ -1,4 +1,4 @@ -version_info = (0, 17, 2) +version_info = (0, 17, 3) __version__ = '.'.join(map(str, version_info)) try: