Document 0.5 changes.

This commit is contained in:
Friedrich Lindenberg 2014-02-12 14:06:49 +01:00
parent bbaa90851e
commit ff98190f3b
2 changed files with 6 additions and 2 deletions

View File

@ -3,6 +3,10 @@
*The changelog has only been started with version 0.3.12, previous *The changelog has only been started with version 0.3.12, previous
changes must be reconstructed from revision history.* changes must be reconstructed from revision history.*
* 0.5: Improve overall code quality and testing, including Travis CI.
An advanced __getitem__ syntax which allowed for the specification
of primary keys when getting a table was dropped.
DDL is no longer run against a transaction, but the base connection.
* 0.4: Python 3 support and switch to alembic for migrations. * 0.4: Python 3 support and switch to alembic for migrations.
* 0.3.15: Fixes to update and insertion of data, thanks to @cli248 * 0.3.15: Fixes to update and insertion of data, thanks to @cli248
and @abhinav-upadhyay. and @abhinav-upadhyay.

View File

@ -4,11 +4,11 @@ from setuptools import setup, find_packages
py26_dependency = [] py26_dependency = []
if sys.version_info[:2] <= (2, 6): if sys.version_info[:2] <= (2, 6):
py26_dependency = ["argparse >= 1.2.1", "ordereddict >= 1.1"] py26_dependency = ["argparse >= 1.1", "ordereddict >= 1.1"]
setup( setup(
name='dataset', name='dataset',
version='0.4.0', version='0.5.0',
description="Toolkit for Python-based data processing.", description="Toolkit for Python-based data processing.",
long_description="", long_description="",
classifiers=[ classifiers=[