We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c471e6 commit 1407b35Copy full SHA for 1407b35
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "speech-recognition-api"
3
-version = "0.1.0"
+version = "0.1.1"
4
authors = [
5
{ name="Viktor Zhemchuzhnikov", email="[email protected]" },
6
]
speech_recognition_api/bootstrap.py
@@ -14,7 +14,7 @@ def create_app(**fastapi_kwargs: Any) -> FastAPI: # noqa: ANN401
14
fastapi_kwargs["description"] = "Simple but extensible API for Speech Recognition."
15
16
if "version" not in fastapi_kwargs:
17
- fastapi_kwargs["version"] = "0.1.0"
+ fastapi_kwargs["version"] = "0.1.1"
18
19
app = FastAPI(**fastapi_kwargs)
20
app.include_router(sync_router)
0 commit comments