diff --git a/HISTORY.rst b/HISTORY.rst index d57bf5696..8e0b1a588 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ Release History --------------- +1.1.0 (2023-11-03) +++++++++++++++++++ + +- Add BlockItemContainer.iter_inner_content() + + 1.0.1 (2023-10-12) ++++++++++++++++++ diff --git a/src/docx/__init__.py b/src/docx/__init__.py index a518501a5..b214045d1 100644 --- a/src/docx/__init__.py +++ b/src/docx/__init__.py @@ -13,7 +13,7 @@ if TYPE_CHECKING: from docx.opc.part import Part -__version__ = "1.0.1" +__version__ = "1.1.0" __all__ = ["Document"]