Commit 9038d2df authored by Jason Madden's avatar Jason Madden

Prep release.

parent 2e52be20
......@@ -6,9 +6,12 @@ gevent/core.pyx
gevent/__pycache__
gevent/libev
*.egg-info
Makefile.ext
MANIFEST
doc/changelog.rst
doc/_build
doc/__pycache__
doc/gevent.*.rst
!doc/gevent.core.rst
!doc/gevent.event.rst
......
......@@ -5,6 +5,7 @@ recursive-include doc *
recursive-include libev *
recursive-include c-ares *
recursive-include util *
include LICENSE
include README.rst
include TODO
......@@ -13,3 +14,11 @@ include MANIFEST.in
include AUTHORS
include Makefile.ext
include known_failures.py
include *.yml
include *.txt
include tox.ini
include .pep8
recursive-include benchmarks *.sh
recursive-include appveyor *.cmd
recursive-include appveyor *.ps1
......@@ -4,8 +4,8 @@
.. currentmodule:: gevent
1.1b4 (Unreleased)
==================
1.1b4 (Sep 4, 2015)
===================
- Detect and raise an error for several important types of
programming errors even if Python interpreter optimizations are
......@@ -16,7 +16,7 @@
was called on an empty ``Queue``. Reported in :issue:`643` by michaelvol.
- Make ``SIGCHLD`` handlers specified to ``signal.signal`` work with
the child watchers that are used by default. Also make
``os.waitpid`` work with a first argument of -1.
``os.waitpid`` work with a first argument of -1. Noted by users of gunicorn.
- Under Python 2, any timeout set on a socket would be ignored when
using the results of ``socket.makefile``. Reported in :issue:`644`
by Karan Lyons.
......
......@@ -18,7 +18,7 @@ _version_info = namedtuple('version_info',
version_info = _version_info(1, 1, 0, 'beta', '4')
#: The human-readable PEP 440 version identifier
__version__ = '1.1b4.dev0'
__version__ = '1.1b4'
__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