Skip to content

Commit

Permalink
Bump version to 1.7.1, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
thobbs committed Sep 4, 2012
1 parent 69df18c commit b0f4b37
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 1 deletion.
20 changes: 20 additions & 0 deletions CHANGES
@@ -1,3 +1,23 @@
Changes in Version 1.7.1

This release has few changes, and should make for a smooth upgrade
from 1.7.0.

Features

* Add support for DecimalType

Bug Fixes

* Fix bad slice ends when using xget() with composite columns and a
column_finish parameter
* Fix bad documentation paths in debian packaging scripts

Other

* Add __version__ and __version_info__ attributes to the pycassa module


Changes in Version 1.7.0

This release has a few relatively large changes in it: a new connection
Expand Down
21 changes: 21 additions & 0 deletions doc/changelog.rst
@@ -1,6 +1,27 @@
Changelog
=========

Changes in Version 1.7.1
------------------------
This release has few changes, and should make for a smooth upgrade
from 1.7.0.

Features
~~~~~~~~
- Add support for DecimalType: :class:`~.types.DecimalType`

Bug Fixes
~~~~~~~~~
- Fix bad slice ends when using :meth:`~.ColumnFamily.xget()` with
composite columns and a `column_finish` parameter
- Fix bad documentation paths in debian packaging scripts

Other
~~~~~
- Add ``__version__`` and ``__version_info__`` attributes to the
:mod:`pycassa` module


Changes in Version 1.7.0
------------------------
This release has a few relatively large changes in it: a new
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, 0)
__version_info__ = (1, 7, 1)
__version__ = '.'.join(map(str, __version_info__))

0 comments on commit b0f4b37

Please sign in to comment.