diff --git a/CHANGELOG.md b/CHANGELOG.md index 897f0b68ddcfce68f5adbdb30949bd01de07b522..ddb3f959063966c28cda6b2e30ef49ce6d75be94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ Changelog Unreleased ---------- +[1.5.0] (2024-07-04) +-------------------- + ### Changed - Upgraded @@ -199,6 +202,7 @@ Unreleased - mp3 support by using FFmpeg instead of librosa in #8 - add language detection endpoint in #9 +[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 [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 diff --git a/README.md b/README.md index d2b13d427c1977e0810729c6285139950a1bb5d1..26d171ed842e1e4afbaad8a242c574ec64beaaff 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Whisper is a general-purpose speech recognition model. It is trained on a large ## Features -Current release (v1.4.1) supports following whisper models: +Current release (v1.5.0) 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)@[v1.0.3](https://github.com/SYSTRAN/faster-whisper/releases/tag/1.0.3) diff --git a/docs/index.md b/docs/index.md index 2ab96ed422b1ab0aba6ade336b8629fb6c9f5f0e..620220b44f3673e6e072a28e762ba529fb287dcc 100644 --- a/docs/index.md +++ b/docs/index.md @@ -2,7 +2,7 @@ Whisper is a general-purpose speech recognition model. It is trained on a large ## Features -Current release (v1.4.1) supports following whisper models: +Current release (v1.5.0) 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)@[v1.0.3](https://github.com/SYSTRAN/faster-whisper/releases/tag/1.0.3) diff --git a/pyproject.toml b/pyproject.toml index 96239e51864b8b6f2a72b0c9a2474b1bb09016e5..4f28cacfdafcc249ed72b3fa77fc7d8740a5bf66 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "whisper-asr-webservice" -version = "1.5.0-dev" +version = "1.5.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"