From 99aaf3df866000ce7f2ff3ad83a17e8e54dfa8c7 Mon Sep 17 00:00:00 2001 From: chainyo Date: Wed, 7 Jun 2023 19:10:24 +0000 Subject: [PATCH] release 0.3.1 --- .env | 2 +- pyproject.toml | 2 +- tests/test_config.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.env b/.env index 96ba7db..c57a2d3 100644 --- a/.env +++ b/.env @@ -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. diff --git a/pyproject.toml b/pyproject.toml index d9f4fd6..9cd5223 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] readme = "README.md" diff --git a/tests/test_config.py b/tests/test_config.py index 39615a5..9cf1ab6 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -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, @@ -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."