twisted / towncrier

Manage the release notes for your project.

Home Page:https://towncrier.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The misc type new fragment is not built into the CHANGELOG.md

drunkwcodes opened this issue · comments

I create a misc type fragment named 8da92c49.misc.md and have some content:

Start to use black on May 4th. **May the force be with you.**
Also fully transition to python3, which avoids deprecated modules like cPickle, xrange etc.

When I used towncrier build --draft to preview, it only generate a file name in misc section. The content is missing.

### Misc

- 8da92c49

misc has showcontent=False by default:

towncrier/pyproject.toml

Lines 104 to 107 in c0af1f8

[[tool.towncrier.type]]
directory = "misc"
name = "Misc"
showcontent = false

That's a feature.

Closing this since this works as expected.

The default configuration for .misc is hiding the content on purpose.

You can update the configuration to show the content for .misc

Thank you for the quick response.