Commit e93f0e09 authored by Jason Madden's avatar Jason Madden

svb [skip ci]

parent ca60c7a4
...@@ -4,12 +4,17 @@ ...@@ -4,12 +4,17 @@
.. currentmodule:: gevent .. currentmodule:: gevent
1.1rc5 (unreleased)
===================
- TBD.
1.1rc4 (Feb 16, 2016) 1.1rc4 (Feb 16, 2016)
===================== =====================
- Python 2: Using the blocking API at import time when multiple - Python 2: Using the blocking API at import time when multiple
greenlets are also importing should not lead to ``LoopExit``. greenlets are also importing should not lead to ``LoopExit``.
Reported in :issue:`798` by Garrett Heel. Reported in :issue:`728` by Garrett Heel.
- Python 2: Don't raise ``OverflowError`` when using the ``readline`` - Python 2: Don't raise ``OverflowError`` when using the ``readline``
method of the WSGI input stream without a size hint or with a large method of the WSGI input stream without a size hint or with a large
size hint when the client is uploading a large amount of data. (This size hint when the client is uploading a large amount of data. (This
......
...@@ -15,10 +15,10 @@ _version_info = namedtuple('version_info', ...@@ -15,10 +15,10 @@ _version_info = namedtuple('version_info',
#: The programatic version identifier. The fields have (roughly) the #: The programatic version identifier. The fields have (roughly) the
#: same meaning as :data:`sys.version_info` #: same meaning as :data:`sys.version_info`
version_info = _version_info(1, 1, 0, 'rc', '4') version_info = _version_info(1, 1, 0, 'rc', '5')
#: The human-readable PEP 440 version identifier #: The human-readable PEP 440 version identifier
__version__ = '1.1rc4' __version__ = '1.1rc5.dev0'
__all__ = ['get_hub', __all__ = ['get_hub',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment