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

Commit

Permalink
Version bump to 0.5.2 plus changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
thobbs committed Nov 2, 2010
1 parent c09e183 commit 8bda7c2
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGES
@@ -1,3 +1,14 @@
Changes in Version 0.5.2

* Support for adding/updating/dropping Keyspaces and CFs in pycassa.connection.Connection
* get_range() optimization and more configurable batch size
* batch get_indexed_slices() similar to get_range()
* Reorganized pycassa logging
* More efficient packing of data types
* Fix error condition that results in infinite recursion
* Limit pooling retries to only appropriate exceptions
* Use Thrift API 19.3.0

Changes in Version 0.5.1

* Automatically detect if a column family is a standard column family or a super column family
Expand Down
15 changes: 15 additions & 0 deletions doc/changelog.rst
@@ -1,6 +1,21 @@
Changelog
=========

Changes in Version 0.5.2
------------------------

- Support for adding/updating/dropping Keyspaces and CFs
in :class:`pycassa.connection.Connection`
- :meth:`~pycassa.columnfamily.ColumnFamily.get_range()` optimization
and more configurable batch size
- batch :meth:`~pycassa.columnfamily.ColumnFamily.get_indexed_slices()`
similar to :meth:`.get_range()`
- Reorganized pycassa logging
- More efficient packing of data types
- Fix error condition that results in infinite recursion
- Limit pooling retries to only appropriate exceptions
- Use Thrift API 19.3.0

Changes in Version 0.5.1
------------------------

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -16,7 +16,7 @@
from setuptools import setup
from distutils.cmd import Command

__version_info__ = (0, 7, 'a', 1)
__version_info__ = (0, 5, 2)
__version__ = '.'.join([str(v) for v in __version_info__])

long_description = """pycassa is a Cassandra library with the following features:
Expand Down Expand Up @@ -82,7 +82,7 @@ def run(self):
description = 'Python client library for Apache Cassandra',
long_description = long_description,
url = 'http://github.com/pycassa/pycassa',
download_url = 'http://github.com/downloads/pycassa/pycassa/pycassa-0.5.1.tar.gz',
download_url = 'http://github.com/downloads/pycassa/pycassa/pycassa-0.5.2.tar.gz',
keywords = 'cassandra client db distributed thrift',
packages = ['pycassa', 'pycassa.cassandra', 'pycassa.logging'],
py_modules = ['ez_setup'],
Expand Down

0 comments on commit 8bda7c2

Please sign in to comment.