diff --git a/CHANGELOG.md b/CHANGELOG.md
index 207fcaa..c231335 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
## [v0.2.1](https://github.com/dtomlinson91/csops/commits/v0.2.1) - 2022-01-27
-[Compare with v0.2.0](https://github.com/dtomlinson91/csops/compare/v0.2.0..v0.2.1)
+[Compare with v0.2.0](https://github.com/dtomlinson91/csops/compare/v0.2.0...v0.2.1)
### ✨ Features
@@ -18,7 +18,7 @@ All notable changes to this project will be documented in this file.
- Disable spawning a shell on subprocess ([91519e2](https://github.com/dtomlinson91/csops/commit/91519e232d1f1cfe19fd13a7a0ac45c80506195c))
## [v0.2.0](https://github.com/dtomlinson91/csops/commits/v0.2.0) - 2022-01-17
-[Compare with v0.1.0](https://github.com/dtomlinson91/csops/compare/v0.1.0..v0.2.0)
+[Compare with v0.1.0](https://github.com/dtomlinson91/csops/compare/v0.1.0...v0.2.0)
### ✨ Features
diff --git a/duties.py b/duties.py
index 34885fd..6e7652d 100644
--- a/duties.py
+++ b/duties.py
@@ -345,7 +345,7 @@ def changelog(ctx, planned_release: Optional[str] = None, previous_release: Opti
generated_changelog: list = generated_changelog.splitlines()
generated_changelog.insert(
1,
- f"[Compare with {previous_release}]({REPO_URL}/compare/{previous_release}..{planned_release})",
+ f"[Compare with {previous_release}]({REPO_URL}/compare/{previous_release}...{planned_release})",
)
generated_changelog: str = "\n".join([line for line in generated_changelog]) + "\n"
new_changelog = []