diff --git a/changelog b/changelog index 8763c4ad..153d5617 100644 --- a/changelog +++ b/changelog @@ -1,5 +1,8 @@ CHANGELOG +0.1.1 +* fixed a bug occurring when creating tables from the REPL + 0.1 * added min_length and max_length validators to the Text column * added == and != equality operators to model class diff --git a/cqlengine/__init__.py b/cqlengine/__init__.py index 33cf4f13..cb73106c 100644 --- a/cqlengine/__init__.py +++ b/cqlengine/__init__.py @@ -1,5 +1,5 @@ from cqlengine.columns import * from cqlengine.models import Model -__version__ = '0.1' +__version__ = '0.1.1' diff --git a/docs/conf.py b/docs/conf.py index f2d45ab7..d25ee3a0 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.1' +version = '0.1.1' # The full version, including alpha/beta/rc tags. -release = '0.1' +release = '0.1.1' # 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 65c4806c..f1878a24 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.1' +version = '0.1.1' long_desc = """ cqlengine is a Cassandra CQL ORM for Python in the style of the Django orm and mongoengine