1
1
Change log
2
2
================================================================================
3
3
4
+ 0.5.6 - 26.03.2018
5
+ --------------------------------------------------------------------------------
6
+
7
+ Added
8
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9
+
10
+ #. `#24 <https://github.com/pyexcel/pyexcel-xlsx/issues/24 >`_, remove deprecated
11
+ warning from merged_cell_ranges and get_sheet_by_name
12
+
4
13
0.5.5 - 18.12.2017
5
14
--------------------------------------------------------------------------------
6
15
16
+ Added
17
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
18
+
7
19
#. `#22 <https://github.com/pyexcel/pyexcel-xlsx/issues/22 >`_, to detect merged
8
- cell in xlsx - fast tracked patreon request.
20
+ cell in xlsx - fast tracked patreon request.
9
21
10
22
0.5.4 - 2.11.2017
11
23
--------------------------------------------------------------------------------
12
24
25
+ Updated
26
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
27
+
13
28
#. Align the behavior of skip_hidden_row_and_column. Default it to True.
14
29
15
30
0.5.3 - 2.11.2017
16
31
--------------------------------------------------------------------------------
17
32
18
33
Added
19
- ********************************************************************************
34
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
20
35
21
36
#. `#20 <https://github.com/pyexcel/pyexcel-xlsx/issues/20 >`_, skip hidden rows
22
37
and columns under 'skip_hidden_row_and_column' flag.
23
38
24
-
25
39
0.5.2 - 23.10.2017
26
40
--------------------------------------------------------------------------------
27
41
28
42
updated
29
- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
30
- #. pyexcel `#105 <https://github.com/pyexcel/pyexcel/issues/105 >`_, remove gease
31
- from setup_requires, introduced by 0.5.1.
43
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44
+
45
+ #. pyexcel `pyexcel#105 <https://github.com/pyexcel/pyexcel/issues/105 >`_,
46
+ remove gease from setup_requires, introduced by 0.5.1.
32
47
#. remove python2.6 test support
33
48
#. update its dependecy on pyexcel-io to 0.5.3
34
49
35
50
0.5.1 - 20.10.2017
36
51
--------------------------------------------------------------------------------
37
52
38
53
added
39
- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
54
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
40
55
41
- #. `#103 <https://github.com/pyexcel/pyexcel/issues/103 >`_, include LICENSE file
42
- in MANIFEST.in, meaning LICENSE file will appear in the released tar ball.
56
+ #. `pyexcel#103 <https://github.com/pyexcel/pyexcel/issues/103 >`_, include
57
+ LICENSE file in MANIFEST.in, meaning LICENSE file will appear in the released
58
+ tar ball.
43
59
44
60
0.5.0 - 30.08.2017
45
61
--------------------------------------------------------------------------------
46
62
47
63
Updated
48
- ********************************************************************************
64
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
49
65
50
66
#. put dependency on pyexcel-io 0.5.0, which uses cStringIO instead of StringIO.
51
67
Hence, there will be performance boost in handling files in memory.
52
68
53
69
Removed
54
- ********************************************************************************
70
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
55
71
56
72
#. `#18 <https://github.com/pyexcel/pyexcel-xlsx/issues/18 >`_, is handled in
57
73
pyexcel-io
@@ -60,7 +76,7 @@ Removed
60
76
--------------------------------------------------------------------------------
61
77
62
78
Updated
63
- ********************************************************************************
79
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
64
80
65
81
#. `#18 <https://github.com/pyexcel/pyexcel-xlsx/issues/18 >`_, handle unseekable
66
82
stream given by http response
@@ -69,26 +85,25 @@ Updated
69
85
--------------------------------------------------------------------------------
70
86
71
87
Removed
72
- ********************************************************************************
88
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
73
89
74
90
#. Removed useless code
75
91
76
92
0.4.0 - 19.06.2017
77
93
--------------------------------------------------------------------------------
78
94
79
95
Updated
80
- ********************************************************************************
96
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
81
97
82
- #. `#14 <https://github.com/pyexcel/pyexcel-xlsx/issues/14 >`_, close file
83
- handle
84
- #. pyexcel-io plugin interface now updated to use
85
- `lml <https://github.com/chfw/lml >`_.
98
+ #. `#14 <https://github.com/pyexcel/pyexcel-xlsx/issues/14 >`_, close file handle
99
+ #. pyexcel-io plugin interface now updated to use `lml
100
+ <https://github.com/chfw/lml> `_.
86
101
87
102
0.3.0 - 22.12.2016
88
103
--------------------------------------------------------------------------------
89
104
90
105
Updated
91
- ********************************************************************************
106
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
92
107
93
108
#. Code refactoring with pyexcel-io v 0.3.0
94
109
#. `#13 <https://github.com/pyexcel/pyexcel-xlsx/issues/13 >`_, turn read_only
@@ -98,55 +113,57 @@ Updated
98
113
--------------------------------------------------------------------------------
99
114
100
115
Updated
101
- ********************************************************************************
116
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
102
117
103
118
#. `#12 <https://github.com/pyexcel/pyexcel-xlsx/issues/12 >`_, remove
104
- UserWarning: Using a coordinate with ws.cell is deprecated.
105
- Use ws[coordinate]
106
-
119
+ UserWarning: Using a coordinate with ws.cell is deprecated. Use
120
+ ws[coordinate]
107
121
108
122
0.2.2 - 31.08.2016
109
123
--------------------------------------------------------------------------------
110
124
111
125
Added
112
- ********************************************************************************
113
-
114
- #. support pagination. two pairs: start_row, row_limit and start_column, column_limit
115
- help you deal with large files.
126
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
116
127
128
+ #. support pagination. two pairs: start_row, row_limit and start_column,
129
+ column_limit help you deal with large files.
117
130
118
131
0.2.1 - 12.07.2016
119
132
--------------------------------------------------------------------------------
120
133
121
134
Added
122
- ********************************************************************************
123
-
124
- #. `#8 <https://github.com/pyexcel/pyexcel-xlsx/issues/8 >`__, `skip_hidden_sheets ` is added. By default, hidden sheets are skipped when reading all sheets. Reading sheet by name or by index are not affected.
135
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
125
136
137
+ #. `#8 <https://github.com/pyexcel/pyexcel-xlsx/issues/8 >`__,
138
+ `skip_hidden_sheets ` is added. By default, hidden sheets are skipped when
139
+ reading all sheets. Reading sheet by name or by index are not affected.
126
140
127
141
0.2.0 - 01.06.2016
128
142
--------------------------------------------------------------------------------
129
143
130
144
Added
131
- ********************************************************************************
145
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
132
146
133
- #. 'library=pyexcel-xlsx' was added to inform pyexcel to use it instead of other libraries, in the situation where there are more than one plugin for a file type, e.g. xlsm
147
+ #. 'library=pyexcel-xlsx' was added to inform pyexcel to use it instead of other
148
+ libraries, in the situation where there are more than one plugin for a file
149
+ type, e.g. xlsm
134
150
135
151
Updated
136
- ********************************************************************************
152
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
137
153
138
154
#. support the auto-import feature of pyexcel-io 0.2.0
139
155
140
-
141
156
0.1.0 - 17.01.2016
142
157
--------------------------------------------------------------------------------
143
158
144
159
Added
145
- ********************************************************************************
160
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
146
161
147
- #. Passing "streaming=True" to get_data, you will get the two dimensional array as a generator
162
+ #. Passing "streaming=True" to get_data, you will get the two dimensional array
163
+ as a generator
148
164
#. Passing "data=your_generator" to save_data is acceptable too.
149
165
150
166
Updated
151
- ********************************************************************************
167
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
168
+
152
169
#. compatibility with pyexcel-io 0.1.0
0 commit comments