This commit is contained in:
Eric Lapouyade 2025-05-06 15:51:54 +02:00
parent 40861400b3
commit fb0e3583da
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
0.20.0 (2024-12-29)
-------------------
- Add RichTextParagraph (Thanks to ST-Imrie)
- Add RTL support for bold/italic (Thanks to bm-rana)
- Update documentation
0.19.1 (2024-12-29)
-------------------
- PR #575 : fix unicode in footnotes (Thanks to Jonathan Pyle)

View File

@ -304,7 +304,7 @@ calling method `new_subdoc()` ::
tpl.save('output/merge_docx.docx')
In the above example, the content of 'templates/merge_docx_subdoc.docx' will be inserted into the parent document in place of the declared
variable `{{ mysubdoc }}`.
variable `{{p mysubdoc }}`.
See `tests/merge_docx.py` for full code.

View File

@ -4,7 +4,7 @@ Created : 2015-03-12
@author: Eric Lapouyade
"""
__version__ = "0.19.1"
__version__ = "0.20.0"
# flake8: noqa
from .inline_image import InlineImage