diff --git a/pyproject.toml b/pyproject.toml index 465dd23..b93363f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sphinxcontrib-typer" -version = "0.3.4" +version = "0.3.5" 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 13b1df0..2d0bf1e 100644 --- a/sphinxcontrib/typer/__init__.py +++ b/sphinxcontrib/typer/__init__.py @@ -50,7 +50,7 @@ from typer.main import get_command as get_typer_command from typer.models import Context as TyperContext -VERSION = (0, 3, 4) +VERSION = (0, 3, 5) __title__ = "SphinxContrib Typer" __version__ = ".".join(str(i) for i in VERSION)