Merge branch 'release/0.8.5' into develop

This commit is contained in:
Kenneth Reitz
2010-10-06 15:46:55 -04:00
3 changed files with 10 additions and 3 deletions
+7
View File
@@ -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)
------------------
+1 -1
View File
@@ -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(),
+2 -2
View File
@@ -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'