updating version, changelog, etc

This commit is contained in:
Blake Eggleston
2012-12-04 22:47:47 -08:00
parent eb28b92dcf
commit 1935bd1a0b
4 changed files with 8 additions and 3 deletions

View File

@@ -4,5 +4,6 @@ Blake Eggleston <bdeggleston@gmail.com>
CONTRIBUTORS
Eric Scrivner
Eric Scrivner - test environment, connection pooling
Jon Haddad - helped hash out some of the architecture

View File

@@ -1,5 +1,9 @@
CHANGELOG
0.0.5
* added connection pooling
* adding a few convenience query classmethods to the model class
0.0.4-ALPHA
* added Sphinx docs
* changing create_column_family management function to create_table

View File

@@ -1,5 +1,5 @@
from cqlengine.columns import *
from cqlengine.models import Model
__version__ = '0.0.4-ALPHA'
__version__ = '0.0.5'

View File

@@ -4,7 +4,7 @@ from setuptools import setup, find_packages
#python setup.py register
#python setup.py sdist upload
version = '0.0.4-ALPHA'
version = '0.0.5'
long_desc = """
cqlengine is a Cassandra CQL ORM for Python in the style of the Django orm and mongoengine