diff --git a/CHANGELOG.md b/CHANGELOG.md
index 40d3ac7..1c08758 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,11 @@
CHANGELOG
==============
+## 6.7.5 (2021-12-02)
+---------------------
+- Fix `replaced_words` not being updated when best match is a combi (closes [#103](https://github.com/mammothb/symspellpy/issues/103))
+- Implement a way to change the edit distance comparer algorightm via `distance_algorithm` property. Available values are found in [`DistanceAlgorithm`](https://symspellpy.readthedocs.io/en/latest/api/editdistance.html#symspellpy.editdistance.DistanceAlgorithm)
+
## 6.7.4 (2021-11-29)
---------------------
- Update `editdistpy` dependency version
diff --git a/symspellpy/__init__.py b/symspellpy/__init__.py
index 6ca3af1..6e7ea85 100644
--- a/symspellpy/__init__.py
+++ b/symspellpy/__init__.py
@@ -19,7 +19,7 @@
.. moduleauthor:: Wolf Garbe
"""
-__version__ = "6.7.4"
+__version__ = "6.7.5"
import logging
import os