Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Change log
================================================================================

0.6.2 - 7.10.2020
--------------------------------------------------------------------------------

**updated**

#. `#94 <https://github.com/pyexcel/pyexcel-io/issues/94>`_: keep backward
compatibility for pyexcel-xls 0.4.1

0.6.1 - 7.10.2020
--------------------------------------------------------------------------------

Expand Down
6 changes: 6 additions & 0 deletions changelog.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: pyexcel-io
organisation: pyexcel
releases:
- changes:
- action: updated
details:
- "`#94`: keep backward compatibility for pyexcel-xls 0.4.1"
version: 0.6.2
date: 7.10.2020
- changes:
- action: removed
details:
Expand Down
4 changes: 2 additions & 2 deletions docs/source/common_parameters.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ Common parameters
'library' option is added
--------------------------------------------------------------------------------

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


get_data only parameters
-------------------------------
--------------------------------------------------------------------------------

keep_trailing_empty_cells
********************************************************************************
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
copyright = '2015-2020 Onni Software Ltd.'
author = 'chfw'
# The short X.Y version
version = '0.6.1'
version = '0.6.2'
# The full version, including alpha/beta/rc tags
release = '0.6.1'
release = '0.6.2'

# -- General configuration ---------------------------------------------------

Expand Down
6 changes: 3 additions & 3 deletions pyexcel-io.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ overrides: "pyexcel.yaml"
project: "pyexcel-io"
name: pyexcel-io
nick_name: io
version: 0.6.1
current_version: 0.6.1
release: 0.6.1
version: 0.6.2
current_version: 0.6.2
release: 0.6.2
copyright_year: 2015-2020
moban_command: false
is_on_conda: true
Expand Down
2 changes: 2 additions & 0 deletions pyexcel_io/_compact.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
:copyright: (c) 2014-2020 by Onni Software Ltd.
:license: New BSD License, see LICENSE for more details
"""
import sys
import logging
from io import BytesIO, StringIO # noqa: F401
from collections import OrderedDict # noqa: F401
Expand All @@ -22,6 +23,7 @@ def emit(self, record):

text_type = str
irange = range
PY2 = sys.version[0] == 2


def isstream(instance):
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@

NAME = "pyexcel-io"
AUTHOR = "chfw"
VERSION = "0.6.1"
VERSION = "0.6.2"
EMAIL = "info@pyexcel.org"
LICENSE = "New BSD"
DESCRIPTION = (
"A python library to read and write structured data in csv, zipped csv" +
"format and to/from databases"
)
URL = "https://github.com/pyexcel/pyexcel-io"
DOWNLOAD_URL = "%s/archive/0.6.1.tar.gz" % URL
DOWNLOAD_URL = "%s/archive/0.6.2.tar.gz" % URL
FILES = ["README.rst", "CHANGELOG.rst"]
KEYWORDS = [
"python",
Expand Down Expand Up @@ -85,8 +85,8 @@
}
# You do not need to read beyond this line
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
GS_COMMAND = ("gs pyexcel-io v0.6.1 " +
"Find 0.6.1 in changelog for more details")
GS_COMMAND = ("gs pyexcel-io v0.6.2 " +
"Find 0.6.2 in changelog for more details")
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
"Please install gease to enable it.")
UPLOAD_FAILED_MSG = (
Expand Down