Skip to content

Commit

Permalink
🥚 🎡 release #25 in 0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed Dec 8, 2017
1 parent 662bf7f commit 10a6530
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .moban.d/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Change log
================================================================================

0.5.5 - unreleased
0.5.5 - 8.11.2017
--------------------------------------------------------------------------------

Added
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion pyexcel_xls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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 = (
Expand Down

0 comments on commit 10a6530

Please sign in to comment.