Skip to content

Commit 99dd175

Browse files
committed
release 0.5.3 🥚 🎡, skip hidden rows and columns
1 parent cbc6296 commit 99dd175

File tree

5 files changed

+24
-10
lines changed

5 files changed

+24
-10
lines changed

CHANGELOG.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Change log
22
================================================================================
33

4+
0.5.3 - 2.11.2017
5+
--------------------------------------------------------------------------------
6+
7+
Added
8+
********************************************************************************
9+
10+
#. `#20 <https://github.com/pyexcel/pyexcel-xlsx/issues/20>`_, skip hidden rows
11+
and columns under 'skip_hidden_row_and_column' flag.
12+
413

514
0.5.2 - 23.10.2017
615
--------------------------------------------------------------------------------

README.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,12 @@ pyexcel-xlsx - Let you focus on data, instead of xlsx format
1919

2020
**pyexcel-xlsx** is a tiny wrapper library to read, manipulate and write data in xlsx and xlsm fromat using openpyxl. You are likely to use it with `pyexcel <https://github.com/pyexcel/pyexcel>`__.
2121

22-
Please note that `auto_detect_int` flag will not take effect because openpyxl detect integer in python 3 by default.
22+
Please note:
23+
24+
1. `auto_detect_int` flag will not take effect because openpyxl detect integer in python 3 by default.
25+
2. `skip_hidden_row_and_column` will slow down the read operation.
26+
27+
2328

2429
Known constraints
2530
==================

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121

2222
project = u'pyexcel-xlsx'
2323
copyright = u'2015-2017 Onni Software Ltd.'
24-
version = '0.5.2'
25-
release = '0.6.0'
24+
version = '0.5.3'
25+
release = '0.5.3'
2626
exclude_patterns = []
2727
pygments_style = 'sphinx'
2828
html_theme = 'default'

pyexcel_xlsx.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
overrides: "pyexcel.yaml"
22
name: "pyexcel-xlsx"
33
nick_name: xlsx
4-
version: 0.6.0
5-
current_version: 0.6.0
6-
release: 0.5.2
4+
version: 0.5.3
5+
current_version: 0.5.3
6+
release: 0.5.3
77
file_type: xlsx
88
dependencies:
99
- openpyxl>=2.4.4

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
NAME = 'pyexcel-xlsx'
99
AUTHOR = 'C.W.'
10-
VERSION = '0.6.0'
10+
VERSION = '0.5.3'
1111
1212
LICENSE = 'New BSD'
1313
DESCRIPTION = (
@@ -16,7 +16,7 @@
1616
''
1717
)
1818
URL = 'https://github.com/pyexcel/pyexcel-xlsx'
19-
DOWNLOAD_URL = '%s/archive/0.5.2.tar.gz' % URL
19+
DOWNLOAD_URL = '%s/archive/0.5.3.tar.gz' % URL
2020
FILES = ['README.rst', 'CHANGELOG.rst']
2121
KEYWORDS = [
2222
'xlsx'
@@ -50,8 +50,8 @@
5050
# You do not need to read beyond this line
5151
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format(
5252
sys.executable)
53-
GS_COMMAND = ('gs pyexcel-xlsx v0.5.2 ' +
54-
"Find 0.5.2 in changelog for more details")
53+
GS_COMMAND = ('gs pyexcel-xlsx v0.5.3 ' +
54+
"Find 0.5.3 in changelog for more details")
5555
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
5656
'Please install gease to enable it.')
5757
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)