diff --git a/CHANGES.rst b/CHANGES.rst index 81783d2..aa057ce 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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) diff --git a/docs/index.rst b/docs/index.rst index a742d49..292218d 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -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. diff --git a/docxtpl/__init__.py b/docxtpl/__init__.py index 0ec37f1..8adec23 100644 --- a/docxtpl/__init__.py +++ b/docxtpl/__init__.py @@ -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