- Configure towncrier with custom types (feature, bugfix, infra, doc, misc) - Build initial v0.1.0 changelog from zk management log entries - Add .gitkeep to preserve changelog.d directory for future fragments Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
35 lines
699 B
TOML
35 lines
699 B
TOML
# Towncrier configuration for BlumeOps changelog
|
|
# https://towncrier.readthedocs.io/
|
|
|
|
[tool.towncrier]
|
|
directory = "docs/changelog.d"
|
|
filename = "docs/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 = "misc"
|
|
name = "Miscellaneous"
|
|
showcontent = false
|