🥚 🎡 release #25 in 0.5.5

This commit is contained in:
chfw 2017-12-08 23:25:58 +00:00
parent 662bf7f5d1
commit 10a6530a9c
6 changed files with 8 additions and 8 deletions

View File

@ -6,7 +6,7 @@
{%block description%}
**pyexcel-{{file_type}}** is a tiny wrapper library to read, manipulate and write data in {{file_type}} format and it can read xlsx and xlsm fromat. You are likely to use it with `pyexcel <https://github.com/pyexcel/pyexcel>`_.
:fire: New flag: `detect_merged_cells` allows you to spread the same value among all merged cells. But be aware that this may slow down its reading performance.
New flag: `detect_merged_cells` allows you to spread the same value among all merged cells. But be aware that this may slow down its reading performance.
New flag: `skip_hidden_row_and_column` allows you to skip hidden rows and columns and is defaulted to **True**. It may slow down its reading performance. And it is only valid for 'xls' files. For 'xlsx' files, please use pyexcel-xlsx.

View File

@ -1,7 +1,7 @@
Change log
================================================================================
0.5.5 - unreleased
0.5.5 - 8.11.2017
--------------------------------------------------------------------------------
Added

View File

@ -17,7 +17,7 @@ pyexcel-xls - Let you focus on data, instead of xls format
**pyexcel-xls** is a tiny wrapper library to read, manipulate and write data in xls format and it can read xlsx and xlsm fromat. You are likely to use it with `pyexcel <https://github.com/pyexcel/pyexcel>`_.
:fire: New flag: `detect_merged_cells` allows you to spread the same value among all merged cells. But be aware that this may slow down its reading performance.
New flag: `detect_merged_cells` allows you to spread the same value among all merged cells. But be aware that this may slow down its reading performance.
New flag: `skip_hidden_row_and_column` allows you to skip hidden rows and columns and is defaulted to **True**. It may slow down its reading performance. And it is only valid for 'xls' files. For 'xlsx' files, please use pyexcel-xlsx.

View File

@ -19,7 +19,7 @@ master_doc = 'index'
project = u'pyexcel-xls'
copyright = u'2015-2017 Onni Software Ltd.'
version = '0.5.4'
version = '0.5.5'
release = '0.5.5'
exclude_patterns = []
pygments_style = 'sphinx'

View File

@ -3,7 +3,7 @@ name: "pyexcel-xls"
nick_name: xls
version: 0.5.5
current_version: 0.5.5
release: 0.5.4
release: 0.5.5
file_type: xls
dependencies:
- pyexcel-io>=0.5.3

View File

@ -18,7 +18,7 @@ DESCRIPTION = (
''
)
URL = 'https://github.com/pyexcel/pyexcel-xls'
DOWNLOAD_URL = '%s/archive/0.5.4.tar.gz' % URL
DOWNLOAD_URL = '%s/archive/0.5.5.tar.gz' % URL
FILES = ['README.rst', 'CHANGELOG.rst']
KEYWORDS = [
'xls',
@ -55,8 +55,8 @@ EXTRAS_REQUIRE = {
# 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-xls v0.5.4 ' +
"Find 0.5.4 in changelog for more details")
GS_COMMAND = ('gs pyexcel-xls v0.5.5 ' +
"Find 0.5.5 in changelog for more details")
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
'Please install gease to enable it.')
UPLOAD_FAILED_MSG = (