Skip to content

Commit

Permalink
Bump version to 1.7.2, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
thobbs committed Oct 17, 2012
1 parent 11ef925 commit faf27ab
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 2 deletions.
17 changes: 17 additions & 0 deletions CHANGES
@@ -1,3 +1,20 @@
Changes in Version 1.7.2

This release fixes a minor bug and upgrades the bundled Cassandra
Thrift client interface to 19.34.0, matching Cassandra 1.2.0-beta1.
This doesn't affect any existing Thrift methods, only adds new ones
(that aren't yet utilized by pycassa), so there should not be any
breakage.

Bug Fixes

* Fix single-component composite packing
* Avoid cyclic imports during installation in setup.py

Other

* Travis CI integration

Changes in Version 1.7.1

This release has few changes, and should make for a smooth upgrade
Expand Down
17 changes: 17 additions & 0 deletions doc/changelog.rst
@@ -1,6 +1,23 @@
Changelog
=========

Changes in Version 1.7.2
------------------------
This release fixes a minor bug and upgrades the bundled Cassandra
Thrift client interface to 19.34.0, matching Cassandra 1.2.0-beta1.
This doesn't affect any existing Thrift methods, only adds new ones
(that aren't yet utilized by pycassa), so there should not be any
breakage.

Bug Fixes
~~~~~~~~~
- Fix single-component composite packing
- Avoid cyclic imports during installation in setup.py

Other
~~~~~
- Travis CI integration

Changes in Version 1.7.1
------------------------
This release has few changes, and should make for a smooth upgrade
Expand Down
2 changes: 1 addition & 1 deletion pycassa/__init__.py
Expand Up @@ -10,5 +10,5 @@

from pycassa.logging.pycassa_logger import *

__version_info__ = (1, 7, 1)
__version_info__ = (1, 7, 2)
__version__ = '.'.join(map(str, __version_info__))
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -23,7 +23,7 @@

from distutils.cmd import Command

__version__ = "1.7.1"
__version__ = "1.7.2"

long_description = """pycassa is a python client library for Apache Cassandra with the following features:
Expand Down

0 comments on commit faf27ab

Please sign in to comment.