From 990e7dd936dc5ed5c075de71e84193719da78d67 Mon Sep 17 00:00:00 2001 From: Jim Witschey Date: Thu, 16 Mar 2017 14:01:43 -0400 Subject: [PATCH 1/2] version 3.8.1 --- CHANGELOG.rst | 11 +++++++++++ cassandra/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7bdb5f61..adba5264 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 ===== diff --git a/cassandra/__init__.py b/cassandra/__init__.py index 4d5d3b48..2108c8f5 100644 --- a/cassandra/__init__.py +++ b/cassandra/__init__.py @@ -22,7 +22,7 @@ class NullHandler(logging.Handler): logging.getLogger('cassandra').addHandler(NullHandler()) -__version_info__ = (3, 8, 0, 'post0') +__version_info__ = (3, 8, 1) __version__ = '.'.join(map(str, __version_info__)) From b21e9ddc958f942a854039e216b30aa45b04d094 Mon Sep 17 00:00:00 2001 From: Jim Witschey Date: Thu, 16 Mar 2017 14:51:07 -0400 Subject: [PATCH 2/2] post-release version (3.8.1) --- cassandra/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cassandra/__init__.py b/cassandra/__init__.py index 2108c8f5..edb99c60 100644 --- a/cassandra/__init__.py +++ b/cassandra/__init__.py @@ -22,7 +22,7 @@ class NullHandler(logging.Handler): logging.getLogger('cassandra').addHandler(NullHandler()) -__version_info__ = (3, 8, 1) +__version_info__ = (3, 8, 1, 'post0') __version__ = '.'.join(map(str, __version_info__))