File tree Expand file tree Collapse file tree 6 files changed +45
-18
lines changed Expand file tree Collapse file tree 6 files changed +45
-18
lines changed Original file line number Diff line number Diff line change @@ -362,10 +362,8 @@ Response methods
362
362
:param file_name: same as :meth:`~flask_excel.make_response`
363
363
{%endblock%}
364
364
365
- Indices and tables
366
- --------------------
365
+ {%block changelog%}
367
366
368
- * :ref:`genindex`
369
- * :ref:`modindex`
370
- * :ref:`search`
367
+ .. include:: ../../CHANGELOG.rst
371
368
369
+ {%endblock%}
Original file line number Diff line number Diff line change 1
1
Change log
2
2
================================================================================
3
3
4
- Unreleased
4
+ 0.0.5 - 21.08.2016
5
5
--------------------------------------------------------------------------------
6
6
7
7
Updated
8
8
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
9
9
10
- #. compatibility with pyexcel v0.2.2
10
+ #. compatibility with pyexcel v0.2.2: automatic discovery of pyexcel plugins.
11
+ #. `#15 <https://github.com/pyexcel/Flask-Excel/issues/15 >`_: file name may have
12
+ more than one dot
13
+
14
+ 0.0.4 - 15.01.2016
15
+ --------------------------------------------------------------------------------
16
+
17
+ Updated
18
+ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
19
+
20
+ #. `#8 <https://github.com/pyexcel/Flask-Excel/issues/8 >`_: set file name in response
21
+
22
+
23
+ 0.0.3 - 01.07.2015
24
+ --------------------------------------------------------------------------------
25
+
26
+ Updated
27
+ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
28
+
29
+ #. code refactoring. less code lines in Flask-Excel and more reusable code in
30
+ pyexcel-webio
31
+
32
+ 0.0.2 - 21.05.2015
33
+ --------------------------------------------------------------------------------
34
+
35
+ Added
36
+ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
37
+
38
+ #. turn query sets into a response
39
+
40
+ 0.0.1 - 22.01.2015
41
+ --------------------------------------------------------------------------------
42
+
43
+ Mix pyexcel into Flask.request and bring more make_response functions.
Original file line number Diff line number Diff line change @@ -480,10 +480,6 @@ Response methods
480
480
:param status: same as :meth: `~flask_excel.make_response `
481
481
:param file_name: same as :meth: `~flask_excel.make_response `
482
482
483
- Indices and tables
484
- --------------------
485
483
486
- * :ref: `genindex `
487
- * :ref: `modindex `
488
- * :ref: `search `
484
+ .. include :: ../../CHANGELOG.rst
489
485
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ version: 0.0.5
4
4
release : 0.0.4
5
5
webframework : Flask
6
6
dependencies :
7
- - pyexcel>=0.2.0
8
- - pyexcel-webio>=0.0.5
7
+ - pyexcel>=0.2.2
8
+ - pyexcel-webio>=0.0.7
9
9
- Flask>=0.10.1
10
10
extra_dependencies :
11
11
- xls :
Original file line number Diff line number Diff line change 1
- pyexcel >= 0.2.0
2
- pyexcel-webio >= 0.0.5
1
+ pyexcel >= 0.2.2
2
+ pyexcel-webio >= 0.0.7
3
3
Flask >= 0.10.1
Original file line number Diff line number Diff line change 29
29
]
30
30
31
31
INSTALL_REQUIRES = [
32
- 'pyexcel>=0.2.0 ' ,
33
- 'pyexcel-webio>=0.0.5 ' ,
32
+ 'pyexcel>=0.2.2 ' ,
33
+ 'pyexcel-webio>=0.0.7 ' ,
34
34
'Flask>=0.10.1' ,
35
35
]
36
36
You can’t perform that action at this time.
0 commit comments