updating version number, documentation, and changelog
This commit is contained in:
@@ -1,5 +1,10 @@
|
|||||||
CHANGELOG
|
CHANGELOG
|
||||||
|
|
||||||
|
0.1
|
||||||
|
* added min_length and max_length validators to the Text column
|
||||||
|
* added == and != equality operators to model class
|
||||||
|
* fixed bug with default values that would evaluate to False (ie: 0, '')
|
||||||
|
|
||||||
0.0.9
|
0.0.9
|
||||||
* fixed column inheritance bug
|
* fixed column inheritance bug
|
||||||
* manually defined table names are no longer inherited by subclasses
|
* manually defined table names are no longer inherited by subclasses
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
from cqlengine.columns import *
|
from cqlengine.columns import *
|
||||||
from cqlengine.models import Model
|
from cqlengine.models import Model
|
||||||
|
|
||||||
__version__ = '0.0.9'
|
__version__ = '0.1'
|
||||||
|
|
||||||
|
|||||||
@@ -48,9 +48,9 @@ copyright = u'2012, Blake Eggleston'
|
|||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '0.0.9'
|
version = '0.1'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '0.0.9'
|
release = '0.1'
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
|||||||
@@ -24,6 +24,14 @@ Columns
|
|||||||
|
|
||||||
columns.Text()
|
columns.Text()
|
||||||
|
|
||||||
|
**options**
|
||||||
|
|
||||||
|
:attr:`~columns.Text.min_length`
|
||||||
|
Sets the minimum length of this string. If this field is not set , and the column is not a required field, it defaults to 0, otherwise 1.
|
||||||
|
|
||||||
|
:attr:`~columns.Text.max_length`
|
||||||
|
Sets the maximum length of this string. Defaults to None
|
||||||
|
|
||||||
.. class:: Integer()
|
.. class:: Integer()
|
||||||
|
|
||||||
Stores an integer value ::
|
Stores an integer value ::
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -4,7 +4,7 @@ from setuptools import setup, find_packages
|
|||||||
#python setup.py register
|
#python setup.py register
|
||||||
#python setup.py sdist upload
|
#python setup.py sdist upload
|
||||||
|
|
||||||
version = '0.0.9'
|
version = '0.1'
|
||||||
|
|
||||||
long_desc = """
|
long_desc = """
|
||||||
cqlengine is a Cassandra CQL ORM for Python in the style of the Django orm and mongoengine
|
cqlengine is a Cassandra CQL ORM for Python in the style of the Django orm and mongoengine
|
||||||
|
|||||||
Reference in New Issue
Block a user