Skip to content

Commit

Permalink
release 0.5.0 🥚 🎡
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed Aug 30, 2017
1 parent 32c7728 commit b85ab9e
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 13 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -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
--------------------------------------------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

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'
Expand Down
8 changes: 4 additions & 4 deletions pyexcel_ods.yaml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pyexcel-io>=0.4.0
pyexcel-io>=0.5.0
odfpy>=1.3.3
4 changes: 1 addition & 3 deletions rnd_requirements.txt
Original file line number Diff line number Diff line change
@@ -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

6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@

NAME = 'pyexcel-ods'
AUTHOR = 'C.W.'
VERSION = '0.4.1'
VERSION = '0.5.0'
EMAIL = 'wangc_2011@hotmail.com'
LICENSE = 'New BSD'
DESCRIPTION = (
'A wrapper library to read, manipulate and write data in ods format' +
''
)
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'
Expand All @@ -36,7 +36,7 @@
]

INSTALL_REQUIRES = [
'pyexcel-io>=0.4.0',
'pyexcel-io>=0.5.0',
'odfpy>=1.3.3',
]

Expand Down

0 comments on commit b85ab9e

Please sign in to comment.