Skip to content

Commit

Permalink
update version, try fix rtd config
Browse files Browse the repository at this point in the history
  • Loading branch information
bckohan committed Dec 19, 2023
1 parent ff378c8 commit 98850a2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ build:

# Build documentation in the "docs/" directory with Sphinx
sphinx:
configuration: docs/conf.py
configuration: doc/conf.py

# Optionally build your docs in additional formats such as PDF and ePub
formats:
Expand Down
2 changes: 1 addition & 1 deletion doc/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ sphinxcontrib-serializinghtml==1.1.9
selenium==4.16.0
webdriver-manager==4.0.1
cairosvg==2.7.1
sphinxcontrib-typer==0.1.0
sphinxcontrib-typer==0.1.1
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.1.0"
version = "0.1.1"
description = "Auto generate docs for typer commands."
authors = ["Brian Kohan <[email protected]>"]
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 @@ -46,7 +46,7 @@
from typer.main import get_command as get_typer_command
from typer.models import Context as TyperContext

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

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

0 comments on commit 98850a2

Please sign in to comment.