blumeops/towncrier.toml
Erich Blume b361383051 Fix misc changelog type to show content
The showcontent=false setting expected issue-number-style fragment names.
Since blumeops uses branch names for fragments, change to showcontent=true
so the content is displayed like other fragment types.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-04 08:24:54 -08:00

40 lines
777 B
TOML

# Towncrier configuration for BlumeOps changelog
# https://towncrier.readthedocs.io/
[tool.towncrier]
directory = "docs/changelog.d"
filename = "CHANGELOG.md"
package = ""
title_format = "## [{version}] - {project_date}"
issue_format = ""
underlines = ["", "", ""]
[[tool.towncrier.type]]
directory = "feature"
name = "Features"
showcontent = true
[[tool.towncrier.type]]
directory = "bugfix"
name = "Bug Fixes"
showcontent = true
[[tool.towncrier.type]]
directory = "infra"
name = "Infrastructure"
showcontent = true
[[tool.towncrier.type]]
directory = "doc"
name = "Documentation"
showcontent = true
[[tool.towncrier.type]]
directory = "ai"
name = "AI Assistance"
showcontent = true
[[tool.towncrier.type]]
directory = "misc"
name = "Miscellaneous"
showcontent = true