Skip to content

Commit

Permalink
Prep release.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed Sep 4, 2015
1 parent 2e52be2 commit 9038d2d
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 9 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ recursive-include doc *
recursive-include libev *
recursive-include c-ares *
recursive-include util *

include LICENSE
include README.rst
include TODO
Expand All @@ -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
6 changes: 3 additions & 3 deletions changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion gevent/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 9038d2d

Please sign in to comment.