From ff98190f3b2283d4527edd99a02d7ff041ee8294 Mon Sep 17 00:00:00 2001 From: Friedrich Lindenberg Date: Wed, 12 Feb 2014 14:06:49 +0100 Subject: [PATCH] Document 0.5 changes. --- CHANGELOG.md | 4 ++++ setup.py | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 47befe3..43b95ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ *The changelog has only been started with version 0.3.12, previous 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.3.15: Fixes to update and insertion of data, thanks to @cli248 and @abhinav-upadhyay. diff --git a/setup.py b/setup.py index 4c9111d..1081673 100644 --- a/setup.py +++ b/setup.py @@ -4,11 +4,11 @@ from setuptools import setup, find_packages py26_dependency = [] 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( name='dataset', - version='0.4.0', + version='0.5.0', description="Toolkit for Python-based data processing.", long_description="", classifiers=[