Skip to content

Commit

Permalink
increment version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
bckohan committed Oct 14, 2024
1 parent f336862 commit 2643566
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sphinxcontrib-typer"
version = "0.5.0"
version = "0.5.1"
description = "Auto generate docs for typer commands."
authors = ["Brian Kohan <bckohan@gmail.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion sphinxcontrib/typer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
from typer.models import Context as TyperContext
from typer.models import TyperInfo

VERSION = (0, 5, 0)
VERSION = (0, 5, 1)

__title__ = "SphinxContrib Typer"
__version__ = ".".join(str(i) for i in VERSION)
Expand Down

0 comments on commit 2643566

Please sign in to comment.