diff --git a/changelog b/changelog index 7a68e4f8..35981af3 100644 --- a/changelog +++ b/changelog @@ -1,5 +1,8 @@ CHANGELOG +0.4.6 +* fixing the way models are compared + 0.4.5 * fixed bug where container columns would not call their child to_python method, this only really affected columns with special to_python logic diff --git a/cqlengine/__init__.py b/cqlengine/__init__.py index f246c6a7..a07df1f2 100644 --- a/cqlengine/__init__.py +++ b/cqlengine/__init__.py @@ -3,5 +3,5 @@ from cqlengine.functions import * from cqlengine.models import Model from cqlengine.query import BatchQuery -__version__ = '0.4.5' +__version__ = '0.4.6' diff --git a/docs/conf.py b/docs/conf.py index cadd3038..880cbeb4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ copyright = u'2012, Blake Eggleston' # built documents. # # The short X.Y version. -version = '0.4.5' +version = '0.4.6' # The full version, including alpha/beta/rc tags. -release = '0.4.5' +release = '0.4.6' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 32691303..c00d3ab9 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages #python setup.py register #python setup.py sdist upload -version = '0.4.5' +version = '0.4.6' long_desc = """ Cassandra CQL 3 Object Mapper for Python