diff --git a/.moban.d/README.rst b/.moban.d/README.rst index f6090f3..e176dd4 100644 --- a/.moban.d/README.rst +++ b/.moban.d/README.rst @@ -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 `_. -: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. diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5099414..1e0b5e8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,7 +1,7 @@ Change log ================================================================================ -0.5.5 - unreleased +0.5.5 - 8.11.2017 -------------------------------------------------------------------------------- Added diff --git a/README.rst b/README.rst index d63eb77..786673f 100644 --- a/README.rst +++ b/README.rst @@ -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 `_. -: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. diff --git a/docs/source/conf.py b/docs/source/conf.py index b485710..34d645b 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -19,7 +19,7 @@ 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' diff --git a/pyexcel_xls.yaml b/pyexcel_xls.yaml index 9db61aa..c8c1660 100644 --- a/pyexcel_xls.yaml +++ b/pyexcel_xls.yaml @@ -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 diff --git a/setup.py b/setup.py index e6c4168..7948f6b 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ '' ) 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 @@ # 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 = (