Skip to content

Commit 1407b35

Browse files
committed
chore: bump version
1 parent 4c471e6 commit 1407b35

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "speech-recognition-api"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = [
55
{ name="Viktor Zhemchuzhnikov", email="[email protected]" },
66
]

speech_recognition_api/bootstrap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def create_app(**fastapi_kwargs: Any) -> FastAPI: # noqa: ANN401
1414
fastapi_kwargs["description"] = "Simple but extensible API for Speech Recognition."
1515

1616
if "version" not in fastapi_kwargs:
17-
fastapi_kwargs["version"] = "0.1.0"
17+
fastapi_kwargs["version"] = "0.1.1"
1818

1919
app = FastAPI(**fastapi_kwargs)
2020
app.include_router(sync_router)

0 commit comments

Comments
 (0)