1 Commits
v0.2.1 ... main

Author SHA1 Message Date
9359b27e84 chore: update generated changelog diff url 2022-01-28 23:46:27 +00:00
2 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
<!-- marker --> <!-- marker -->
## [v0.2.1](https://github.com/dtomlinson91/csops/commits/v0.2.1) - 2022-01-27 ## [v0.2.1](https://github.com/dtomlinson91/csops/commits/v0.2.1) - 2022-01-27
<small>[Compare with v0.2.0](https://github.com/dtomlinson91/csops/compare/v0.2.0..v0.2.1)</small> <small>[Compare with v0.2.0](https://github.com/dtomlinson91/csops/compare/v0.2.0...v0.2.1)</small>
### ✨ Features ### ✨ 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)) - 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 ## [v0.2.0](https://github.com/dtomlinson91/csops/commits/v0.2.0) - 2022-01-17
<small>[Compare with v0.1.0](https://github.com/dtomlinson91/csops/compare/v0.1.0..v0.2.0)</small> <small>[Compare with v0.1.0](https://github.com/dtomlinson91/csops/compare/v0.1.0...v0.2.0)</small>
### ✨ Features ### ✨ Features

View File

@@ -345,7 +345,7 @@ def changelog(ctx, planned_release: Optional[str] = None, previous_release: Opti
generated_changelog: list = generated_changelog.splitlines() generated_changelog: list = generated_changelog.splitlines()
generated_changelog.insert( generated_changelog.insert(
1, 1,
f"<small>[Compare with {previous_release}]({REPO_URL}/compare/{previous_release}..{planned_release})</small>", f"<small>[Compare with {previous_release}]({REPO_URL}/compare/{previous_release}...{planned_release})</small>",
) )
generated_changelog: str = "\n".join([line for line in generated_changelog]) + "\n" generated_changelog: str = "\n".join([line for line in generated_changelog]) + "\n"
new_changelog = [] new_changelog = []