Skip to content

Commit

Permalink
Version for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed Nov 14, 2015
1 parent 7d3f5ad commit 9d43704
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
19 changes: 12 additions & 7 deletions changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,24 @@

.. currentmodule:: gevent

1.1b7 (unreleased)
==================
1.1rc1 (Nov 14, 2015)
=====================

- Windows/Python 3: Port the :mod:`gevent.subprocess` module, fixing a
- Windows/Python 3: Finish porting the :mod:`gevent.subprocess` module, fixing a
large number of failing tests. Examples of failures are in
:issue:`668` and :issue:`669` srossross.
:issue:`668` and :issue:`669` reported by srossross.
- Python 3: The SSLSocket class should return an empty ``bytes``
object on an EOF instead of a ``str``. Fixed in :pr:`674` by Dahoon
Kim.
- Python 2: Workaround a buffering bug in the stdlib ``io`` module
that caused ``FileObjectPosix`` to be slower than necessary in some
cases. Reported in :issue:`675` by WGH-.
- PyPy: Fix a potential crash. Reported in :issue:`676` by Jay Oster.
- PyPy: Fix a crash. Reported in :issue:`676` by Jay Oster.

.. caution:: There are some remaining, relatively rare, PyPy
crashes, but their ultimate cause is unknown (gevent,
CFFI, greenlet, the PyPy GC?). PyPy users can
contribute to :issue:`677` to help track them down.
- PyPy: Exceptions raised while handling an error raised by a loop
callback function behave like the CPython implementation: the
exception is printed, and the rest of the callbacks continue
Expand All @@ -25,8 +30,8 @@
one created for the same thread, which itself was then destroyed with
``destroy_loop=True``, the process could crash. Documented in
:issue:`237` and fix based on :pr:`238`, both by Jan-Philip Gehrcke.
- Python 3: Initializing gevent's hub for the first time in a native
background thread created during import could fail with
- Python 3: Initializing gevent's hub for the first time
simultaneously in multiple native background threads could fail with
``AttributeError`` and ``ImportError``. Reported in :issue:`687` by
Gregory Petukhov.

Expand Down
4 changes: 2 additions & 2 deletions gevent/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@

#: The programatic version identifier. The fields have (roughly) the
#: same meaning as :data:`sys.version_info`
version_info = _version_info(1, 1, 0, 'beta', '7')
version_info = _version_info(1, 1, 0, 'rc', '1')

#: The human-readable PEP 440 version identifier
__version__ = '1.1b7.dev0'
__version__ = '1.1rc1'


__all__ = ['get_hub',
Expand Down

0 comments on commit 9d43704

Please sign in to comment.