From 9038d2df2cd187bd65980b6006dd969d701fee35 Mon Sep 17 00:00:00 2001 From: Jason Madden Date: Fri, 4 Sep 2015 08:24:47 -0500 Subject: [PATCH] Prep release. --- .gitignore | 3 +++ MANIFEST.in | 9 +++++++++ changelog.rst | 6 +++--- gevent/__init__.py | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 404bd24e8..31ce77bfa 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/MANIFEST.in b/MANIFEST.in index 633dbb261..d007a3236 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -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 diff --git a/changelog.rst b/changelog.rst index b65259097..843fc6b44 100644 --- a/changelog.rst +++ b/changelog.rst @@ -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. diff --git a/gevent/__init__.py b/gevent/__init__.py index 505b580f0..439073c43 100644 --- a/gevent/__init__.py +++ b/gevent/__init__.py @@ -18,7 +18,7 @@ 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',