diff --git a/NEWS b/NEWS index cf2c4c7..ec71eba 100644 --- a/NEWS +++ b/NEWS @@ -7,6 +7,7 @@ * Removed test dependency on sqlite, using nose instead. * Marked known-broken tests using nose's mechanism (most of these are not broken but are simply run in the incorrect context, such as threading-related tests that are incompatible with the libevent hub). * Remove copied code from python standard libs (in tests). +* Added eventlet.patcher which can be used to import "greened" modules. 0.8.16 ====== diff --git a/doc/conf.py b/doc/conf.py index 1c18124..a2fb194 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -48,10 +48,11 @@ copyright = u'2009, Eventlet Contributors' # |version| and |release|, also used in various other places throughout the # built documents. # +import eventlet # The short X.Y version. -version = '0.9' +version = '%s.%s' % (eventlet.version_info[0], eventlet.version_info[1]) # The full version, including alpha/beta/rc tags. -release = '0.9pre' +release = eventlet.__version__ # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/doc/real_index.html b/doc/real_index.html index 183b4a0..cf0e610 100644 --- a/doc/real_index.html +++ b/doc/real_index.html @@ -35,7 +35,7 @@ easy_install eventlet
Alternately, you can download the source tarball:
@@ -102,4 +102,4 @@ easy_install eventlet