diff --git a/CHANGELOG.md b/CHANGELOG.md index 974f3071a0e703a3e2383c0a5d06315bc368ec4f..7c57f65327d1ffd7abb2378964c1b91d95918a7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ Changelog Unreleased ---------- +[1.4.1] (2024-04-17) +-------------------- + ### Changed - Upgraded torch to v1.13.1 @@ -183,6 +186,7 @@ Unreleased - mp3 support by using FFmpeg instead of librosa in #8 - add language detection endpoint in #9 +[1.4.1]: https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.4.1 [1.4.0]: https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.4.0 [1.3.0]: https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.3.0 [1.2.4]: https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.2.4 diff --git a/README.md b/README.md index 05a39ff306ac86fe110568178e318b84fd0b6dcc..62317cf40e7c2cb3b18b37233c553df663423acc 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Whisper is a general-purpose speech recognition model. It is trained on a large dataset of diverse audio and is also a multitask model that can perform multilingual speech recognition as well as speech translation and language identification. For more details: [github.com/openai/whisper](https://github.com/openai/whisper/) ## Features -Current release (v1.4.0) supports following whisper models: +Current release (v1.4.1) supports following whisper models: - [openai/whisper](https://github.com/openai/whisper)@[v20231117](https://github.com/openai/whisper/releases/tag/v20231117) - [SYSTRAN/faster-whisper](https://github.com/SYSTRAN/faster-whisper)@[v0.10.0](https://github.com/SYSTRAN/faster-whisper/releases/tag/0.10.0) diff --git a/docs/index.md b/docs/index.md index fcb08a85ef85d27e77a35a3aae8f7fbe6c4dccac..94a0075083d58e45c62d028937d365a1d5a1ad89 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,7 +1,7 @@ Whisper is a general-purpose speech recognition model. It is trained on a large dataset of diverse audio and is also a multitask model that can perform multilingual speech recognition as well as speech translation and language identification. ## Features -Current release (v1.4.0) supports following whisper models: +Current release (v1.4.1) supports following whisper models: - [openai/whisper](https://github.com/openai/whisper)@[v20231117](https://github.com/openai/whisper/releases/tag/v20231117) - [SYSTRAN/faster-whisper](https://github.com/SYSTRAN/faster-whisper)@[v0.10.0](https://github.com/SYSTRAN/faster-whisper/releases/tag/0.10.0) diff --git a/pyproject.toml b/pyproject.toml index e06c71d59e012b136ab30233357cf6d151faeb2e..450e0b22a5a1e99e5ec82b4d041c900ba91c589a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "whisper-asr-webservice" -version = "1.5.0-dev" +version = "1.4.1" 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"