diff --git a/pyproject.toml b/pyproject.toml index 2423ac5..465dd23 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sphinxcontrib-typer" -version = "0.3.3" +version = "0.3.4" description = "Auto generate docs for typer commands." authors = ["Brian Kohan "] license = "MIT" diff --git a/sphinxcontrib/typer/__init__.py b/sphinxcontrib/typer/__init__.py index 97b8ee9..ff5a971 100644 --- a/sphinxcontrib/typer/__init__.py +++ b/sphinxcontrib/typer/__init__.py @@ -48,7 +48,7 @@ from typer.main import get_command as get_typer_command from typer.models import Context as TyperContext -VERSION = (0, 3, 3) +VERSION = (0, 3, 4) __title__ = "SphinxContrib Typer" __version__ = ".".join(str(i) for i in VERSION)