From 1935bd1a0b5cca3f010d2c0a07a8de3bd2602b3f Mon Sep 17 00:00:00 2001 From: Blake Eggleston Date: Tue, 4 Dec 2012 22:47:47 -0800 Subject: [PATCH] updating version, changelog, etc --- AUTHORS | 3 ++- changelog | 4 ++++ cqlengine/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/AUTHORS b/AUTHORS index 3a69691a..b361bf0d 100644 --- a/AUTHORS +++ b/AUTHORS @@ -4,5 +4,6 @@ Blake Eggleston CONTRIBUTORS -Eric Scrivner +Eric Scrivner - test environment, connection pooling +Jon Haddad - helped hash out some of the architecture diff --git a/changelog b/changelog index 652dda1d..d1d9469f 100644 --- a/changelog +++ b/changelog @@ -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 diff --git a/cqlengine/__init__.py b/cqlengine/__init__.py index 8fed2785..f2c0cbcb 100644 --- a/cqlengine/__init__.py +++ b/cqlengine/__init__.py @@ -1,5 +1,5 @@ from cqlengine.columns import * from cqlengine.models import Model -__version__ = '0.0.4-ALPHA' +__version__ = '0.0.5' diff --git a/setup.py b/setup.py index de11c701..4471f9c8 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.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