0.4.3 version bump

This commit is contained in:
Blake Eggleston
2013-06-20 10:41:57 -07:00
parent 43b6eb3c8d
commit 6587d383c2
4 changed files with 7 additions and 4 deletions

View File

@@ -1,5 +1,8 @@
CHANGELOG
0.4.3
* fixed bug with Text column validation
0.4.2
* added support for instantiating container columns with column instances

View File

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

View File

@@ -48,9 +48,9 @@ copyright = u'2012, Blake Eggleston'
# built documents.
#
# The short X.Y version.
version = '0.4.2'
version = '0.4.3'
# The full version, including alpha/beta/rc tags.
release = '0.4.2'
release = '0.4.3'
# 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.2'
version = '0.4.3'
long_desc = """
Cassandra CQL 3 Object Mapper for Python