Skip to content

Commit 10a6530

Browse files
committed
🥚 🎡 release #25 in 0.5.5
1 parent 662bf7f commit 10a6530

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.moban.d/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{%block description%}
77
**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>`_.
88

9-
: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.
9+
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.
1010

1111
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.
1212

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Change log
22
================================================================================
33

4-
0.5.5 - unreleased
4+
0.5.5 - 8.11.2017
55
--------------------------------------------------------------------------------
66

77
Added

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pyexcel-xls - Let you focus on data, instead of xls format
1717

1818
**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>`_.
1919

20-
: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.
20+
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.
2121

2222
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.
2323

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
project = u'pyexcel-xls'
2121
copyright = u'2015-2017 Onni Software Ltd.'
22-
version = '0.5.4'
22+
version = '0.5.5'
2323
release = '0.5.5'
2424
exclude_patterns = []
2525
pygments_style = 'sphinx'

pyexcel_xls.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: "pyexcel-xls"
33
nick_name: xls
44
version: 0.5.5
55
current_version: 0.5.5
6-
release: 0.5.4
6+
release: 0.5.5
77
file_type: xls
88
dependencies:
99
- pyexcel-io>=0.5.3

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
''
1919
)
2020
URL = 'https://github.com/pyexcel/pyexcel-xls'
21-
DOWNLOAD_URL = '%s/archive/0.5.4.tar.gz' % URL
21+
DOWNLOAD_URL = '%s/archive/0.5.5.tar.gz' % URL
2222
FILES = ['README.rst', 'CHANGELOG.rst']
2323
KEYWORDS = [
2424
'xls',
@@ -55,8 +55,8 @@
5555
# You do not need to read beyond this line
5656
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format(
5757
sys.executable)
58-
GS_COMMAND = ('gs pyexcel-xls v0.5.4 ' +
59-
"Find 0.5.4 in changelog for more details")
58+
GS_COMMAND = ('gs pyexcel-xls v0.5.5 ' +
59+
"Find 0.5.5 in changelog for more details")
6060
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
6161
'Please install gease to enable it.')
6262
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)