Skip to content

Commit 22acbf4

Browse files
committed
release 0.5.0 🥚 🎡
1 parent 66c09b7 commit 22acbf4

File tree

6 files changed

+25
-11
lines changed

6 files changed

+25
-11
lines changed

CHANGELOG.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
Change log
22
================================================================================
33

4+
0.5.0 - 30.08.2017
5+
--------------------------------------------------------------------------------
6+
7+
Updated
8+
********************************************************************************
9+
10+
#. put dependency on pyexcel-io 0.5.0, which uses cStringIO instead of StringIO.
11+
Hence, there will be performance boost in handling files in memory.
12+
13+
Relocated
14+
--------------------------------------------------------------------------------
15+
16+
#. All ods type conversion code lives in pyexcel_io.service module
17+
418
0.4.3 - 25.08.2017
519
--------------------------------------------------------------------------------
620

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121

2222
project = u'pyexcel-odsr'
2323
copyright = u'2015-2017 Onni Software Ltd.'
24-
version = '0.4.3'
25-
release = '0.4.3'
24+
version = '0.5.0'
25+
release = '0.5.0'
2626
exclude_patterns = []
2727
pygments_style = 'sphinx'
2828
html_theme = 'default'

pyexcel_odsr.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
overrides: "pyexcel.yaml"
22
name: "pyexcel-odsr"
33
nick_name: odsr
4-
version: 0.4.3
5-
current_version: 0.4.3
6-
release: 0.4.3
4+
version: 0.5.0
5+
current_version: 0.5.0
6+
release: 0.5.0
77
file_type: ods
88
dependencies:
9-
- pyexcel-io>=0.4.0
9+
- pyexcel-io>=0.5.0
1010
- lxml>=3.2
1111
keywords:
1212
- excel

pyexcel_odsr/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Auto generated by moban
2-
__version__ = '0.4.3'
2+
__version__ = '0.5.0'
33
__author__ = 'C.W.'

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pyexcel-io>=0.4.0
1+
pyexcel-io>=0.5.0
22
lxml>=3.2

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
NAME = 'pyexcel-odsr'
99
AUTHOR = 'C.W.'
10-
VERSION = '0.4.3'
10+
VERSION = '0.5.0'
1111
1212
LICENSE = 'New BSD'
1313
DESCRIPTION = (
@@ -16,7 +16,7 @@
1616
''
1717
)
1818
URL = 'https://github.com/pyexcel/pyexcel-odsr'
19-
DOWNLOAD_URL = '%s/archive/0.4.3.tar.gz' % URL
19+
DOWNLOAD_URL = '%s/archive/0.5.0.tar.gz' % URL
2020
FILES = ['README.rst', 'CONTRIBUTORS.rst', 'CHANGELOG.rst']
2121
KEYWORDS = [
2222
'excel',
@@ -40,7 +40,7 @@
4040
]
4141

4242
INSTALL_REQUIRES = [
43-
'pyexcel-io>=0.4.0',
43+
'pyexcel-io>=0.5.0',
4444
'lxml>=3.2',
4545
]
4646

0 commit comments

Comments
 (0)