Merge branch '3.8.1-branch'

This commit is contained in:
Jim Witschey
2017-03-16 14:51:29 -04:00
2 changed files with 12 additions and 1 deletions

View File

@@ -1,3 +1,14 @@
3.8.1
=====
March 16, 2017
Bug Fixes
---------
* implement __le__/__ge__/__ne__ on some custom types (PYTHON-714)
* Fix bug in eventlet and gevent reactors that could cause hangs (PYTHON-721)
* Fix DecimalType regression (PYTHON-724)
3.8.0 3.8.0
===== =====

View File

@@ -22,7 +22,7 @@ class NullHandler(logging.Handler):
logging.getLogger('cassandra').addHandler(NullHandler()) logging.getLogger('cassandra').addHandler(NullHandler())
__version_info__ = (3, 8, 0, 'post0') __version_info__ = (3, 8, 1, 'post0')
__version__ = '.'.join(map(str, __version_info__)) __version__ = '.'.join(map(str, __version_info__))