Skip to content

Commit 0a471aa

Browse files
committed
release 0.5.0 🥚 🎡
1 parent 4f0d94f commit 0a471aa

File tree

5 files changed

+26
-11
lines changed

5 files changed

+26
-11
lines changed

CHANGELOG.rst

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

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

docs/source/conf.py

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

2121
project = u'pyexcel-ods3'
2222
copyright = u'2015-2017 Onni Software Ltd.'
23-
version = '0.4.1'
24-
release = '0.4.1'
23+
version = '0.5.0'
24+
release = '0.5.0'
2525
exclude_patterns = []
2626
pygments_style = 'sphinx'
2727
html_theme = 'default'

pyexcel_ods3.yaml

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-ods3"
33
nick_name: ods3
4-
version: 0.4.1
5-
current_version: 0.4.1
6-
release: 0.4.1
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
1111
- pyexcel-ezodf>=0.3.3
1212
- weakrefset;python_version<"2.7"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pyexcel-io>=0.4.0
1+
pyexcel-io>=0.5.0
22
lxml
33
pyexcel-ezodf>=0.3.3
44
weakrefset;python_version<"2.7"

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@
1010

1111
NAME = 'pyexcel-ods3'
1212
AUTHOR = 'C.W.'
13-
VERSION = '0.4.1'
13+
VERSION = '0.5.0'
1414
1515
LICENSE = 'New BSD'
1616
DESCRIPTION = (
1717
'A wrapper library to read, manipulate and write data in ods format' +
1818
''
1919
)
2020
URL = 'https://github.com/pyexcel/pyexcel-ods3'
21-
DOWNLOAD_URL = '%s/archive/0.4.1.tar.gz' % URL
22-
FILES = ['README.rst', 'CHANGELOG.rst']
21+
DOWNLOAD_URL = '%s/archive/0.5.0.tar.gz' % URL
22+
FILES = ['README.rst', 'CHANGELOG.rst']
2323
KEYWORDS = [
2424
'ods'
2525
'python'
@@ -40,7 +40,7 @@
4040
]
4141

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

0 commit comments

Comments
 (0)