Skip to content

Commit 9a5a463

Browse files
committed
🥚 🎡 release 0.5.9
1 parent 610152b commit 9a5a463

File tree

6 files changed

+22
-8
lines changed

6 files changed

+22
-8
lines changed

CHANGELOG.rst

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
Change log
22
================================================================================
33

4+
0.5.9 - 23.08.2018
5+
--------------------------------------------------------------------------------
6+
7+
added
8+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9+
10+
#. `pyexcel#148 <https://github.com/pyexcel/pyexcel/issues/148>`_, support
11+
force_file_type
12+
413
0.5.8 - 16.08.2018
514
--------------------------------------------------------------------------------
615

7-
fixed
16+
added
817
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
918

1019
#. `#49 <https://github.com/pyexcel/pyexcel-io/issues/49>`_, support additional

changelog.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@ name: pyexcel-io
22
organisation: pyexcel
33
releases:
44
- changes:
5-
- action: fixed
5+
- action: added
6+
details:
7+
- '`pyexcel#148`, support force_file_type'
8+
date: 23.08.2018
9+
version: 0.5.9
10+
- changes:
11+
- action: added
612
details:
713
- '`#49`, support additional options when detecting float values in csv format. default_float_nan, ignore_nan_text'
814
date: 16.08.2018

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
author = u'C.W.'
3030

3131
# The short X.Y version
32-
version = u'0.5.8'
32+
version = u'0.5.9'
3333
# The full version, including alpha/beta/rc tags
3434
release = u'0.5.9'
3535

docs/source/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
:Source code: http://github.com/pyexcel/pyexcel-io.git
1111
:Issues: http://github.com/pyexcel/pyexcel-io/issues
1212
:License: New BSD License
13-
:Development: |release|
1413
:Released: |version|
1514
:Generated: |today|
1615

pyexcel-io.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: "pyexcel-io"
33
nick_name: io
44
version: 0.5.9
55
current_version: 0.5.9
6-
release: 0.5.8
6+
release: 0.5.9
77
dependencies:
88
- ordereddict;python_version<"2.7"
99
- lml==0.0.1

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'format and to/from databases'
2020
)
2121
URL = 'https://github.com/pyexcel/pyexcel-io'
22-
DOWNLOAD_URL = '%s/archive/0.5.8.tar.gz' % URL
22+
DOWNLOAD_URL = '%s/archive/0.5.9.tar.gz' % URL
2323
FILES = ['README.rst', 'CHANGELOG.rst']
2424
KEYWORDS = [
2525
'API',
@@ -63,8 +63,8 @@
6363
# You do not need to read beyond this line
6464
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format(
6565
sys.executable)
66-
GS_COMMAND = ('gs pyexcel-io v0.5.8 ' +
67-
"Find 0.5.8 in changelog for more details")
66+
GS_COMMAND = ('gs pyexcel-io v0.5.9 ' +
67+
"Find 0.5.9 in changelog for more details")
6868
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
6969
'Please install gease to enable it.')
7070
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)