diff --git a/CHANGELOG.md b/CHANGELOG.md
index fbba15a5500b0e3e48c6589b99ac5e9e40eda71a..bdc02e201abb38085d68644476bc46de6b2dc947 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,8 @@
 Changelog
 =========
 
-Unreleased
-----------
+[1.2.4] (2023-11-27)
+--------------------
 
 ### Changed
 
@@ -154,6 +154,7 @@ Unreleased
 - mp3 support by using ffmpeg instead of librosa in #8
 - add language detection endpoint in #9
 
+[1.2.4]: https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.2.4
 [1.2.3]: https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.2.3
 [1.2.2]: https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.2.2
 [1.2.1]: https://github.com/ahmetoner/whisper-asr-webservice/releases/tag/v1.2.1
diff --git a/README.md b/README.md
index fed675f9ce0df49631f55bc43ccb3c0d16b8dff0..47a7e0cc2f53f9745185cc4efba59c8277fea307 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.3) supports following whisper models:
+Current release (v1.2.4) 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 aa46aab2771b37a3835076ab2c2f4f6973d995c5..660b4ebdc76a2440f63f30b907e5ff1126ca83e7 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.3) supports following whisper models:
+Current release (v1.2.4) 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 bdbc2ec2fc630cf26aceee842a2c9bbc969c933c..a5ab8446ae096d81ae6636d7f5a2844c968f0388 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "whisper-asr-webservice"
-version = "1.2.4-dev"
+version = "1.2.4"
 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"