release 0.5.0 🥚 🎡

This commit is contained in:
chfw 2017-08-30 23:37:59 +01:00
parent 32c7728949
commit b85ab9e332
6 changed files with 27 additions and 13 deletions

View File

@ -1,6 +1,22 @@
Change log
================================================================================
0.5.0 - 30.08.2017
--------------------------------------------------------------------------------
Updated
********************************************************************************
#. put dependency on pyexcel-io 0.5.0, which uses cStringIO instead of StringIO.
Hence, there will be performance boost in handling files in memory.
Relocated
--------------------------------------------------------------------------------
#. All ods type conversion code lives in pyexcel_io.service module
0.4.1 - 25.08.2017
--------------------------------------------------------------------------------

View File

@ -20,8 +20,8 @@ master_doc = 'index'
project = u'pyexcel-ods'
copyright = u'2015-2017 Onni Software Ltd.'
version = '0.4.1'
release = '0.4.1'
version = '0.5.0'
release = '0.5.0'
exclude_patterns = []
pygments_style = 'sphinx'
html_theme = 'default'

View File

@ -1,11 +1,11 @@
overrides: "pyexcel.yaml"
name: "pyexcel-ods"
nick_name: ods
version: 0.4.1
current_version: 0.4.1
release: 0.4.1
version: 0.5.0
current_version: 0.5.0
release: 0.5.0
file_type: ods
dependencies:
- pyexcel-io>=0.4.0
- pyexcel-io>=0.5.0
- odfpy>=1.3.3
description: A wrapper library to read, manipulate and write data in ods format

View File

@ -1,2 +1,2 @@
pyexcel-io>=0.4.0
pyexcel-io>=0.5.0
odfpy>=1.3.3

View File

@ -1,4 +1,2 @@
https://github.com/chfw/lml/archive/master.zip
https://github.com/pyexcel/pyexcel-io/archive/dev.zip
https://github.com/pyexcel/pyexcel/archive/master.zip
https://github.com/pyexcel/pyexcel-xls/archive/dev.zip

View File

@ -7,7 +7,7 @@ except ImportError:
NAME = 'pyexcel-ods'
AUTHOR = 'C.W.'
VERSION = '0.4.1'
VERSION = '0.5.0'
EMAIL = 'wangc_2011@hotmail.com'
LICENSE = 'New BSD'
DESCRIPTION = (
@ -15,7 +15,7 @@ DESCRIPTION = (
''
)
URL = 'https://github.com/pyexcel/pyexcel-ods'
DOWNLOAD_URL = '%s/archive/0.4.1.tar.gz' % URL
DOWNLOAD_URL = '%s/archive/0.5.0.tar.gz' % URL
FILES = ['README.rst', 'CHANGELOG.rst']
KEYWORDS = [
'python'
@ -36,7 +36,7 @@ CLASSIFIERS = [
]
INSTALL_REQUIRES = [
'pyexcel-io>=0.4.0',
'pyexcel-io>=0.5.0',
'odfpy>=1.3.3',
]