diff --git a/.gitignore b/.gitignore index 57dad88..f520230 100644 --- a/.gitignore +++ b/.gitignore @@ -13,8 +13,4 @@ uv.lock .python-version !src/docx/templates/default.docx -test.py -cat.jpeg -*.docx -*.pdf test_functionality \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 8ad0c79..77746b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "skelmis-docx" -version = "2.2.1" +version = "2.2.2" description = "Create, read, and update Microsoft Word .docx files." authors = [{ name = "Skelmis", email = "skelmis.craft@gmail.com" }] requires-python = ">=3.10" diff --git a/src/skelmis/docx/__init__.py b/src/skelmis/docx/__init__.py index ce02ca2..dda41a5 100644 --- a/src/skelmis/docx/__init__.py +++ b/src/skelmis/docx/__init__.py @@ -13,7 +13,7 @@ if TYPE_CHECKING: from skelmis.docx.opc.part import Part -__version__ = "2.2.1" +__version__ = "2.2.2" __all__ = ["Document"]