Skip to content

Commit

Permalink
version 0.1.0 -> 0.2.0
Browse files Browse the repository at this point in the history
bump version 0.1.0 -> 0.2.0
  • Loading branch information
Thomas Chaigneau committed May 10, 2023
2 parents 1e4295e + a2433ae commit dea46b9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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 <info@wordcab.com>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
def test_config() -> None:
"""Test default config settings with the .env file."""
assert settings.project_name == "Wordcab Transcribe"
assert settings.version == "0.1.0"
assert settings.version == "0.2.0"
assert (
settings.description
== "💬 ASR FastAPI server using faster-whisper and NVIDIA NeMo."
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 dea46b9

Please sign in to comment.