From d9aee8e605df78dbeca2eb27821f181fdb4887ab Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 6 Oct 2010 15:13:40 -0400 Subject: [PATCH 1/2] Version bump (v0.8.5) --- setup.py | 2 +- tablib/core.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index dd28785..e93f61b 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ required = [] setup( name='tablib', - version='0.8.4', + version='0.8.5', description='Format agnostic tabular data library (XLS, JSON, YAML, CSV)', long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(), diff --git a/tablib/core.py b/tablib/core.py index ad8ef8f..544c208 100644 --- a/tablib/core.py +++ b/tablib/core.py @@ -13,8 +13,8 @@ from tablib.formats import FORMATS as formats __title__ = 'tablib' -__version__ = '0.8.4' -__build__ = 0x000804 +__version__ = '0.8.5' +__build__ = 0x000805 __author__ = 'Kenneth Reitz' __license__ = 'MIT' __copyright__ = 'Copyright 2010 Kenneth Reitz' From f5c0c5c34da086b602a9440f160b71e851351e6d Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 6 Oct 2010 15:46:25 -0400 Subject: [PATCH 2/2] Updated History. --- HISTORY.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/HISTORY.rst b/HISTORY.rst index 787308c..4bbf180 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,13 @@ History ======= +0.8.5 (2010-10-06) +------------------ + +* New import system. All dependencies attempt to load from site-packages, + then fallback on vendorized modules. + + 0.8.4 (2010-10-04) ------------------