obsidian-export/towncrier.toml
Nick Groenen e173c32171
Remove custom changelog template in favor of title_format
With https://github.com/twisted/towncrier/issues/648 now fixed, we can
just rely on a correctly-set title_format again for properly formatted
markdown changelogs.
2024-08-25 13:26:44 +02:00

34 lines
809 B
TOML

[tool.towncrier]
name = "obsidian-export"
directory = "changelog.d"
filename = "CHANGELOG.md"
start_string = "<!-- towncrier release notes start -->\n"
underlines = ["", "", ""]
title_format = "## [{version}](https://github.com/zoni/obsidian-export/tree/{version}) - {project_date}"
issue_format = "[#{issue}](https://github.com/zoni/obsidian-export/issues/{issue})"
[[tool.towncrier.type]]
directory = "new"
name = "New Features"
showcontent = true
[[tool.towncrier.type]]
directory = "change"
name = "Changes"
showcontent = true
[[tool.towncrier.type]]
directory = "fix"
name = "Fixes"
showcontent = true
[[tool.towncrier.type]]
directory = "breaking"
name = "Backwards-incompatible Changes"
showcontent = true
[[tool.towncrier.type]]
directory = "deprecation"
name = "Deprecations"
showcontent = true