Updated NEWS with changes, adding wrap_ssl to the docs.

This commit is contained in:
Ryan Williams
2010-05-25 15:13:07 -07:00
parent df9d260308
commit 94dc142526
2 changed files with 13 additions and 0 deletions

11
NEWS
View File

@@ -1,3 +1,14 @@
0.9.8
=====
* Support for psycopg2's asynchronous mode, from Daniele Varrazzo
* websocket module is now a core module with 100% unit test coverage thanks to Ben Ford. See its documentation at http://eventlet.net/doc/modules/websocket.html
* Added wrap_ssl convenience method, meaning that we truly no longer need api or util modules.
* Multiple-reader detection code protects against the common mistake of having multiple greenthreads read from the same socket at the same time, which can be overridden if you know what you're doing.
* Cleaner monkey_patch API: the "all" keyword is no longer necessary.
* Pool objects have a more convenient constructor -- no more need to subclass
* amajorek's reimplementation of GreenPipe
* Many bug fixes, major and minor.
0.9.7 0.9.7
===== =====
* GreenPipe is now a context manager (thanks, quad) * GreenPipe is now a context manager (thanks, quad)

View File

@@ -74,6 +74,8 @@ Network Convenience Functions
.. autofunction:: eventlet.listen .. autofunction:: eventlet.listen
.. autofunction:: eventlet.wrap_ssl
.. autofunction:: eventlet.serve .. autofunction:: eventlet.serve
.. autofunction:: eventlet.StopServe .. autofunction:: eventlet.StopServe