mirror of
https://github.com/kennethreitz/tablib.git
synced 2026-06-05 23:10:17 +00:00
Version bump (v0.6.4)
This commit is contained in:
+11
@@ -1,6 +1,17 @@
|
||||
History
|
||||
=======
|
||||
|
||||
0.6.4 (2010-09-13)
|
||||
------------------
|
||||
|
||||
* Updated unicode export for XLS
|
||||
* More exhaustive unit tests
|
||||
|
||||
0.6.3(2010-09-14)
|
||||
----------------
|
||||
|
||||
* Added Dataset.append() support for columns
|
||||
|
||||
0.6.2 (2010-09-13)
|
||||
------------------
|
||||
* Fixed Dataset.append() error on empty dataset.
|
||||
|
||||
@@ -18,7 +18,7 @@ if sys.argv[-1] == "publish":
|
||||
|
||||
setup(
|
||||
name='tablib',
|
||||
version='0.6.3',
|
||||
version='0.6.4',
|
||||
description='Format agnostic tabular data library (XLS, JSON, YAML, CSV)',
|
||||
long_description=open('README.rst').read() + '\n\n' +
|
||||
open('HISTORY.rst').read(),
|
||||
|
||||
+2
-2
@@ -21,8 +21,8 @@ from helpers import *
|
||||
# __all__ = ['Dataset', 'DataBook']
|
||||
|
||||
__name__ = 'tablib'
|
||||
__version__ = '0.6.3'
|
||||
__build__ = 0x000603
|
||||
__version__ = '0.6.4'
|
||||
__build__ = 0x000604
|
||||
__author__ = 'Kenneth Reitz'
|
||||
__license__ = 'MIT'
|
||||
__copyright__ = 'Copyright 2010 Kenneth Reitz'
|
||||
|
||||
Reference in New Issue
Block a user