changelog and version update

This commit is contained in:
Blake Eggleston
2013-06-27 13:11:50 -07:00
parent f90cfb046a
commit 01e9747411
4 changed files with 7 additions and 4 deletions

View File

@@ -1,5 +1,8 @@
CHANGELOG
0.4.7
* adding support for passing None into query batch methods to clear any batch objects
0.4.6
* fixing the way models are compared

View File

@@ -3,5 +3,5 @@ from cqlengine.functions import *
from cqlengine.models import Model
from cqlengine.query import BatchQuery
__version__ = '0.4.6'
__version__ = '0.4.7'

View File

@@ -48,9 +48,9 @@ copyright = u'2012, Blake Eggleston'
# built documents.
#
# The short X.Y version.
version = '0.4.6'
version = '0.4.7'
# The full version, including alpha/beta/rc tags.
release = '0.4.6'
release = '0.4.7'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@@ -4,7 +4,7 @@ from setuptools import setup, find_packages
#python setup.py register
#python setup.py sdist upload
version = '0.4.6'
version = '0.4.7'
long_desc = """
Cassandra CQL 3 Object Mapper for Python