From 4cd49f3acc2abf7682b538ab554123b1a8047edc Mon Sep 17 00:00:00 2001 From: Brian Kohan Date: Thu, 15 Aug 2024 16:45:24 -0700 Subject: [PATCH] incr version number --- pyproject.toml | 2 +- sphinxcontrib/typer/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)