Skip to content

Commit aa5e1b0

Browse files
authored
Merge pull request #95 from pyexcel/dev
release 0.6.2
2 parents d5500f1 + b46dc16 commit aa5e1b0

File tree

7 files changed

+27
-11
lines changed

7 files changed

+27
-11
lines changed

CHANGELOG.rst

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Change log
22
================================================================================
33

4+
0.6.2 - 7.10.2020
5+
--------------------------------------------------------------------------------
6+
7+
**updated**
8+
9+
#. `#94 <https://github.com/pyexcel/pyexcel-io/issues/94>`_: keep backward
10+
compatibility for pyexcel-xls 0.4.1
11+
412
0.6.1 - 7.10.2020
513
--------------------------------------------------------------------------------
614

changelog.yml

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: pyexcel-io
22
organisation: pyexcel
33
releases:
4+
- changes:
5+
- action: updated
6+
details:
7+
- "`#94`: keep backward compatibility for pyexcel-xls 0.4.1"
8+
version: 0.6.2
9+
date: 7.10.2020
410
- changes:
511
- action: removed
612
details:

docs/source/common_parameters.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ Common parameters
55
'library' option is added
66
--------------------------------------------------------------------------------
77

8-
In order to have overlapping plugins co-exit, 'library' option is added to
8+
In order to have overlapping plugins co-exist, 'library' option is added to
99
get_data and save_data.
1010

1111

1212
get_data only parameters
13-
-------------------------------
13+
--------------------------------------------------------------------------------
1414

1515
keep_trailing_empty_cells
1616
********************************************************************************

docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
copyright = '2015-2020 Onni Software Ltd.'
2727
author = 'chfw'
2828
# The short X.Y version
29-
version = '0.6.1'
29+
version = '0.6.2'
3030
# The full version, including alpha/beta/rc tags
31-
release = '0.6.1'
31+
release = '0.6.2'
3232

3333
# -- General configuration ---------------------------------------------------
3434

pyexcel-io.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ overrides: "pyexcel.yaml"
22
project: "pyexcel-io"
33
name: pyexcel-io
44
nick_name: io
5-
version: 0.6.1
6-
current_version: 0.6.1
7-
release: 0.6.1
5+
version: 0.6.2
6+
current_version: 0.6.2
7+
release: 0.6.2
88
copyright_year: 2015-2020
99
moban_command: false
1010
is_on_conda: true

pyexcel_io/_compact.py

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
:copyright: (c) 2014-2020 by Onni Software Ltd.
88
:license: New BSD License, see LICENSE for more details
99
"""
10+
import sys
1011
import logging
1112
from io import BytesIO, StringIO # noqa: F401
1213
from collections import OrderedDict # noqa: F401
@@ -22,6 +23,7 @@ def emit(self, record):
2223

2324
text_type = str
2425
irange = range
26+
PY2 = sys.version[0] == 2
2527

2628

2729
def isstream(instance):

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@
3232

3333
NAME = "pyexcel-io"
3434
AUTHOR = "chfw"
35-
VERSION = "0.6.1"
35+
VERSION = "0.6.2"
3636
3737
LICENSE = "New BSD"
3838
DESCRIPTION = (
3939
"A python library to read and write structured data in csv, zipped csv" +
4040
"format and to/from databases"
4141
)
4242
URL = "https://github.com/pyexcel/pyexcel-io"
43-
DOWNLOAD_URL = "%s/archive/0.6.1.tar.gz" % URL
43+
DOWNLOAD_URL = "%s/archive/0.6.2.tar.gz" % URL
4444
FILES = ["README.rst", "CHANGELOG.rst"]
4545
KEYWORDS = [
4646
"python",
@@ -85,8 +85,8 @@
8585
}
8686
# You do not need to read beyond this line
8787
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
88-
GS_COMMAND = ("gs pyexcel-io v0.6.1 " +
89-
"Find 0.6.1 in changelog for more details")
88+
GS_COMMAND = ("gs pyexcel-io v0.6.2 " +
89+
"Find 0.6.2 in changelog for more details")
9090
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
9191
"Please install gease to enable it.")
9292
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)