From f66bc4262b6780c0a03df6378ffcc8a930c8c590 Mon Sep 17 00:00:00 2001
From: Ahmet Oner <me@ahmetoner.com>
Date: Fri, 3 Nov 2023 01:02:55 +0100
Subject: [PATCH] Release 1.2.1

---
 CHANGELOG.md   | 14 +++-----------
 README.md      |  2 +-
 docs/index.md  |  2 +-
 pyproject.toml |  2 +-
 4 files changed, 6 insertions(+), 14 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 144535d..46e4556 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,8 @@
 Changelog
 =========
 
-Unreleased
-----------
+[1.2.1] (2023-11-03)
+--------------------
 
 ### Enabled
 
@@ -130,22 +130,14 @@ Unreleased
 - mp3 support by using ffmpeg instead of librosa in #8
 - add language detection endpoint in #9
 
+[1.2.1]: https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.2.1
 [1.2.0]: https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.2.0
-
 [1.1.1]: https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.1.1
-
 [1.1.0]: https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.1.0
-
 [1.0.6]: https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.0.6
-
 [1.0.5]: https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.0.5
-
 [1.0.4]: https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.0.4
-
 [1.0.3-beta]: https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.0.3-beta
-
 [1.0.2-beta]: https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.0.2-beta
-
 [1.0.1-beta]: https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.0.1-beta
-
 [1.0.0-beta]: https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/1.0.0-beta
diff --git a/README.md b/README.md
index 75bd94c..e9794a2 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.2.0) supports following whisper models:
+Current release (v1.2.1) supports following whisper models:
 
 - [openai/whisper](https://github.com/openai/whisper)@[v20230918](https://github.com/openai/whisper/releases/tag/v20230918)
 - [guillaumekln/faster-whisper](https://github.com/guillaumekln/faster-whisper)@[0.9.0](https://github.com/guillaumekln/faster-whisper/releases/tag/v0.9.0)
diff --git a/docs/index.md b/docs/index.md
index 6dff661..432cec8 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.2.0) supports following whisper models:
+Current release (v1.2.1) supports following whisper models:
 
 - [openai/whisper](https://github.com/openai/whisper)@[v20230918](https://github.com/openai/whisper/releases/tag/v20230918)
 - [guillaumekln/faster-whisper](https://github.com/guillaumekln/faster-whisper)@[0.9.0](https://github.com/guillaumekln/faster-whisper/releases/tag/v0.9.0)
diff --git a/pyproject.toml b/pyproject.toml
index 7ef73b4..c53204e 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "whisper-asr-webservice"
-version = "1.2.0"
+version = "1.2.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"
-- 
GitLab