Now use towncrier for changelog management

This commit is contained in:
Eliot Berriot 2018-02-27 19:04:50 +01:00
commit 726bbf3032
No known key found for this signature in database
GPG key ID: DD6965E2476E5C27
7 changed files with 64 additions and 5 deletions

33
pyproject.toml Normal file
View file

@ -0,0 +1,33 @@
[tool.towncrier]
package = "changes"
package_dir = ""
filename = "CHANGELOG"
directory = "changes/changelog.d/"
start_string = ".. towncrier\n"
template = "changes/template.rst"
issue_format = ""
title_format = "{version} (unreleased)"
underlines = "-"
[[tool.towncrier.section]]
path = ""
[[tool.towncrier.type]]
directory = "feature"
name = "Features"
showcontent = true
[[tool.towncrier.type]]
directory = "bugfix"
name = "Bugfixes"
showcontent = true
[[tool.towncrier.type]]
directory = "doc"
name = "Documentation"
showcontent = true
[[tool.towncrier.type]]
directory = "misc"
name = "Other"
showcontent = true