Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
asai95 committed Dec 23, 2023
1 parent 4c471e6 commit 1407b35
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 @@
[project]
name = "speech-recognition-api"
version = "0.1.0"
version = "0.1.1"
authors = [
{ name="Viktor Zhemchuzhnikov", email="[email protected]" },
]
Expand Down
2 changes: 1 addition & 1 deletion speech_recognition_api/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def create_app(**fastapi_kwargs: Any) -> FastAPI: # noqa: ANN401
fastapi_kwargs["description"] = "Simple but extensible API for Speech Recognition."

if "version" not in fastapi_kwargs:
fastapi_kwargs["version"] = "0.1.0"
fastapi_kwargs["version"] = "0.1.1"

app = FastAPI(**fastapi_kwargs)
app.include_router(sync_router)
Expand Down

0 comments on commit 1407b35

Please sign in to comment.