Skip to content

Commit

Permalink
bump version 0.1.0 -> 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chainyo committed May 5, 2023
1 parent 1e4295e commit bf68bd3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PROJECT_NAME="Wordcab Transcribe"
VERSION="0.1.0"
VERSION="0.2.0"
DESCRIPTION="💬 ASR FastAPI server using faster-whisper and NVIDIA NeMo."
API_PREFIX="/api/v1"
DEBUG=True
Expand Down
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 = "wordcab-transcribe"
version = "0.1.0"
version = "0.2.0"
description = "ASR FastAPI server using faster-whisper and pyannote-audio."
authors = ["Wordcab <[email protected]>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion wordcab_transcribe/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def nemo_domain_type_must_be_valid(cls, value: str): # noqa: B902, N805

settings = Settings(
project_name=getenv("PROJECT_NAME", "Wordcab Transcribe"),
version=getenv("VERSION", "0.1.0"),
version=getenv("VERSION", "0.2.0"),
description=getenv(
"DESCRIPTION", "💬 ASR FastAPI server using faster-whisper and NVIDIA NeMo."
),
Expand Down

0 comments on commit bf68bd3

Please sign in to comment.