Skip to content

Commit

Permalink
v0.29.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
temoto committed Oct 22, 2020
1 parent 7a8c83d commit 9d73137
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions NEWS
@@ -1,3 +1,10 @@
0.29.1
======
patcher: [py27] recursion error in pytest/python2.7 installing register_at_fork https://github.com/eventlet/eventlet/issues/660
patcher: monkey_patch(builtins=True) failed on py3 because `file` class is gone https://github.com/eventlet/eventlet/issues/541
don't crash on PyPy 7.0.0 https://github.com/eventlet/eventlet/pull/547
Only install monotonic on python2 https://github.com/eventlet/eventlet/pull/583

0.29.0
======
* ssl: context wrapped listener fails accept() https://github.com/eventlet/eventlet/issues/651
Expand Down
2 changes: 1 addition & 1 deletion eventlet/__init__.py
@@ -1,7 +1,7 @@
import os


version_info = (0, 29, 0)
version_info = (0, 29, 1)
__version__ = '.'.join(map(str, version_info))
# This is to make Debian packaging easier, it ignores import
# errors of greenlet so that the packager can still at least
Expand Down

0 comments on commit 9d73137

Please sign in to comment.