From 026fbb2fb66b29fb4809f42b826b4867f62442a6 Mon Sep 17 00:00:00 2001 From: Brian Kohan Date: Sat, 17 Aug 2024 23:42:18 -0700 Subject: [PATCH] incr version --- pyproject.toml | 2 +- sphinxcontrib/typer/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)