| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- [tool.towncrier]
- name = "libxkbcommon"
- directory = "changes"
- filename = "NEWS.md"
- start_string = "<!-- towncrier release notes start -->\n"
- all_bullets = true
- single_file = true
- orphan_prefix = "+"
- title_format = """\
- {name} [{version}] – {project_date}
- ==================================
- [{version}]: https://github.com/xkbcommon/libxkbcommon/tree/xkbcommon-{version}\
- """
- issue_format = "[#{issue}](https://github.com/xkbcommon/libxkbcommon/issues/{issue})"
- # Sections configuration
- [[tool.towncrier.section]]
- name = "Keymap text format"
- path = "keymap-text-format"
- [[tool.towncrier.section]]
- name = "Rules text format"
- path = "rules-text-format"
- [[tool.towncrier.section]]
- name = "API"
- path = "api"
- [[tool.towncrier.section]]
- name = "Tools"
- path = "tools"
- [[tool.towncrier.section]]
- name = "Build system"
- path = "build"
- # Fragments configuration
- [[tool.towncrier.type]]
- directory = "breaking"
- name = "Breaking changes"
- showcontent = true
- [[tool.towncrier.type]]
- directory = "deprecated"
- name = "Deprecated"
- showcontent = true
- [[tool.towncrier.type]]
- directory = "feature"
- name = "New"
- showcontent = true
- [[tool.towncrier.type]]
- directory = "bugfix"
- name = "Fixes"
- showcontent = true
|