From 2746f9eeffabeed1edee64b912adb89450b6c230 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20=C3=96ner?= <ahmetn8@gmail.com> Date: Tue, 17 Dec 2024 01:37:31 +0100 Subject: [PATCH] Release 1.7.0 --- CHANGELOG.md | 8 +++----- README.md | 4 ++-- docs/index.md | 4 ++-- pyproject.toml | 2 +- 4 files changed, 8 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e73bfe..78b2de9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,17 +1,14 @@ Changelog ========= -Unreleased ----------- +[1.7.0] (2024-12-17) +-------------------- ### Added - Timeout configured to allow model to be unloaded when idle - Added detection confidence to langauge detection endpoint - Set mel generation to adjust n_dims automatically to match the loaded model - -### Added - - Refactor classes, Add comments, implement abstract methods, and add factory method for engine selection ### Changed @@ -239,6 +236,7 @@ Unreleased - mp3 support by using FFmpeg instead of librosa in #8 - add language detection endpoint in #9 +[1.7.0]: https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.7.0 [1.6.0]: https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.6.0 [1.5.0]: https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.5.0 [1.4.1]: https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.4.1 diff --git a/README.md b/README.md index 26bbaf7..20ee0c0 100644 --- a/README.md +++ b/README.md @@ -9,10 +9,10 @@ Whisper is a general-purpose speech recognition model. It is trained on a large ## Features -Current release (v1.6.0) supports following whisper models: +Current release (v1.7.0) supports following whisper models: - [openai/whisper](https://github.com/openai/whisper)@[v20240930](https://github.com/openai/whisper/releases/tag/v20240930) -- [SYSTRAN/faster-whisper](https://github.com/SYSTRAN/faster-whisper)@[v1.0.3](https://github.com/SYSTRAN/faster-whisper/releases/tag/1.0.3) +- [SYSTRAN/faster-whisper](https://github.com/SYSTRAN/faster-whisper)@[v1.1.0](https://github.com/SYSTRAN/faster-whisper/releases/tag/v1.1.0) ## Quick Usage diff --git a/docs/index.md b/docs/index.md index 8cc5d18..93e2fc4 100644 --- a/docs/index.md +++ b/docs/index.md @@ -2,10 +2,10 @@ Whisper is a general-purpose speech recognition model. It is trained on a large ## Features -Current release (v1.6.0) supports following whisper models: +Current release (v1.7.0) supports following whisper models: - [openai/whisper](https://github.com/openai/whisper)@[v20240930](https://github.com/openai/whisper/releases/tag/v20240930) -- [SYSTRAN/faster-whisper](https://github.com/SYSTRAN/faster-whisper)@[v1.0.3](https://github.com/SYSTRAN/faster-whisper/releases/tag/1.0.3) +- [SYSTRAN/faster-whisper](https://github.com/SYSTRAN/faster-whisper)@[v1.1.0](https://github.com/SYSTRAN/faster-whisper/releases/tag/v1.1.0) ## Quick Usage diff --git a/pyproject.toml b/pyproject.toml index 230382e..a395a7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "whisper-asr-webservice" -version = "1.7.0-dev" +version = "1.7.0" description = "Whisper ASR Webservice is a general-purpose speech recognition webservice." homepage = "https://github.com/ahmetoner/whisper-asr-webservice/" license = "https://github.com/ahmetoner/whisper-asr-webservice/blob/main/LICENCE" -- GitLab