Commit 628c1b95 authored by Jason Madden's avatar Jason Madden

svb [skip ci]

parent 2073fa13
...@@ -4,10 +4,15 @@ ...@@ -4,10 +4,15 @@
.. currentmodule:: gevent .. currentmodule:: gevent
1.1rc4 (unreleased)
===================
- TBD
1.1rc3 (Jan 04, 2016) 1.1rc3 (Jan 04, 2016)
===================== =====================
- Support the new PEP 466 :mod:`ssl` interfaces on any Python 2 - Python 2: Support the new PEP 466 :mod:`ssl` interfaces on any Python 2
version that supplies them, not just on the versions it officially version that supplies them, not just on the versions it officially
shipped with. Some Linux distributions, including RedHat/CentOS and shipped with. Some Linux distributions, including RedHat/CentOS and
Amazon have backported the changes to older versions. Reported in Amazon have backported the changes to older versions. Reported in
...@@ -16,14 +21,14 @@ ...@@ -16,14 +21,14 @@
collector caused PyPy to crash when a previously-allocated Semaphore collector caused PyPy to crash when a previously-allocated Semaphore
was used in a ``__del__`` method, something done in the popular was used in a ``__del__`` method, something done in the popular
libraries ``requests`` and ``urllib3``. Due to this and other Cython libraries ``requests`` and ``urllib3``. Due to this and other Cython
related issues, the Semaphore class is no longer compiled by Cython. related issues, the Semaphore class is no longer compiled by Cython
This means that it is now traceable and not exactly as atomic as the on PyPy. This means that it is now traceable and not exactly as
Cython version, though the overall semantics should remain the same. atomic as the Cython version, though the overall semantics should
Reported in :issue:`704` by Shaun Crampton. remain the same. Reported in :issue:`704` by Shaun Crampton.
- PyPy: Optimize the CFFI backend to use less memory (two pointers per - PyPy: Optimize the CFFI backend to use less memory (two pointers per
watcher). watcher).
- Python 3: The WSGI ``PATH_INFO`` entry is decoded from URL escapes - Python 3: The WSGI ``PATH_INFO`` entry is decoded from URL escapes
using latin-1, not UTF-8. This improves compliance with PEP 333 and using latin-1, not UTF-8. This improves compliance with PEP 3333 and
compatibility with some frameworks like Django. Fixed in :pr:`712` compatibility with some frameworks like Django. Fixed in :pr:`712`
by Ruben De Visscher. by Ruben De Visscher.
......
...@@ -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', '3') version_info = _version_info(1, 1, 0, 'rc', '4')
#: The human-readable PEP 440 version identifier #: The human-readable PEP 440 version identifier
__version__ = '1.1rc3' __version__ = '1.1rc4.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