diff --git a/CHANGELOG.md b/CHANGELOG.md index ba52ad8..dc62c5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. ## [v2.3.4](https://github.com/dtomlinson91/panaetius/commits/v2.3.4) - 2022-01-03 -[Compare with 2.3.3](https://github.com/dtomlinson91/panaetius/compare/2.3.3..v2.3.4) +[Compare with 2.3.3](https://github.com/dtomlinson91/panaetius/compare/2.3.3...v2.3.4) ### ✨ Features diff --git a/duties.py b/duties.py index aedcce4..ce30f73 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 = []