Skip to content

Commit

Permalink
Merge pull request #92 from Wordcab/release0-3-1
Browse files Browse the repository at this point in the history
release 0.3.1
  • Loading branch information
aleksandr-smechov authored Jun 7, 2023
2 parents c231039 + 99aaf3d commit d63237c
Show file tree
Hide file tree
Showing 3 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
Expand Up @@ -8,7 +8,7 @@
# The name of the project, used for API documentation.
PROJECT_NAME="Wordcab Transcribe"
# The version of the project, used for API documentation.
VERSION="0.3.0"
VERSION="0.3.1"
# The description of the project, used for API documentation.
DESCRIPTION="💬 ASR FastAPI server using faster-whisper and NVIDIA NeMo."
# This API prefix is used for all endpoints in the API outside of the status and cortex endpoints.
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.3.0"
version = "0.3.1"
description = "ASR FastAPI server using faster-whisper and NVIDIA NeMo diarization."
authors = ["Wordcab <info@wordcab.com>"]
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def default_settings() -> OrderedDict:
"""Return the default settings."""
return OrderedDict(
project_name="Wordcab Transcribe",
version="0.3.0",
version="0.3.1",
description="💬 ASR FastAPI server using faster-whisper and NVIDIA NeMo.",
api_prefix="/api/v1",
debug=True,
Expand Down Expand Up @@ -56,7 +56,7 @@ def default_settings() -> OrderedDict:
def test_config() -> None:
"""Test default config settings with the .env file."""
assert settings.project_name == "Wordcab Transcribe"
assert settings.version == "0.3.0"
assert settings.version == "0.3.1"
assert (
settings.description
== "💬 ASR FastAPI server using faster-whisper and NVIDIA NeMo."
Expand Down

0 comments on commit d63237c

Please sign in to comment.