Skip to content
This repository has been archived by the owner on Aug 4, 2020. It is now read-only.

Commit

Permalink
Bump version to 1.9.1, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
thobbs committed Aug 16, 2013
1 parent 6ea16a0 commit e6cae38
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 4 deletions.
18 changes: 18 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
Changes in Version 1.9.1

This release fixes a few edge cases around connection pooling that can affect
long-running applications. It also adds token range support to
ColumnFamily.get_range(), which can be useful for parallelizing full-ring
scans.

Features

* Add token range support to ColumnFamily.get_range()

Bug Fixes

* Prevent possible double connection disposal when recycling connections
* Handle empty strings for IntegerType values
* Prevent closed connections from being returned to the pool.
* Ensure connection count is decremented when pool is disposed

Changes in Version 1.9.0

This release adds a couple of minor new features and improves multithreaded
Expand Down
18 changes: 18 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
Changelog
=========

Changes in Version 1.9.1
------------------------
This release fixes a few edge cases around connection pooling that
can affect long-running applications. It also adds token range
support to :meth:`.ColumnFamily.get_range()`, which can be useful
for parallelizing full-ring scans.

Features
~~~~~~~~
- Add token range support to :meth:`.ColumnFamily.get_range()`

Bug Fixes
~~~~~~~~~
- Prevent possible double connection disposal when recycling connections
- Handle empty strings for IntegerType values
- Prevent closed connections from being returned to the pool.
- Ensure connection count is decremented when pool is disposed

Changes in Version 1.9.0
------------------------
This release adds a couple of minor new features and improves multithreaded
Expand Down
2 changes: 1 addition & 1 deletion pycassa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@

from pycassa.logging.pycassa_logger import *

__version_info__ = (1, 9, 0)
__version_info__ = (1, 9, 1)
__version__ = '.'.join(map(str, __version_info__))
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#

import os

Expand All @@ -10,6 +9,7 @@
except:
has_subprocess = False


try:
from ez_setup import use_setuptools
use_setuptools()
Expand All @@ -23,7 +23,7 @@

from distutils.cmd import Command

__version__ = "1.9.0"
__version__ = "1.9.1"

long_description = """pycassa is a python client library for Apache Cassandra with the following features:
Expand Down Expand Up @@ -118,11 +118,12 @@ def run(self):
description = 'Python client library for Apache Cassandra',
long_description = long_description,
url = 'http://github.com/pycassa/pycassa',
keywords = 'cassandra client db distributed thrift',
keywords = ['pycassa', 'cassandra', 'client', 'driver', 'db', 'distributed', 'thrift'],
packages = ['pycassa',
'pycassa.cassandra',
'pycassa.logging',
'pycassa.contrib'],
tests_require = ['nose'],
install_requires = ['thrift'],
py_modules=['ez_setup'],
scripts=['pycassaShell'],
Expand Down

0 comments on commit e6cae38

Please sign in to comment.