v0.6.0 : DocxTemplate now accepts file-like objects

This commit is contained in:
Eric Lapouyade 2019-06-05 09:44:35 +02:00
parent 9f1cb53205
commit ab7adb5d21
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
0.6.1 (2019-06-05)
-------------------
- PR #203
0.6.0 (2019-06-03) 0.6.0 (2019-06-03)
------------------- -------------------
- DocxTemplate now accepts file-like objects (Thanks to edufresne) - DocxTemplate now accepts file-like objects (Thanks to edufresne)

View File

@ -7,7 +7,7 @@ Created : 2015-03-12
import functools import functools
import io import io
__version__ = '0.6.0' __version__ = '0.6.1'
from lxml import etree from lxml import etree
from docx import Document from docx import Document