summaryrefslogtreecommitdiff
path: root/towncrier.toml
blob: 250cc10f1635e92774db3babacefe21e829979e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[tool.towncrier]
version = "3.0.0"
directory = "doc/whatsnew/fragments"
filename = "doc/whatsnew/3/3.0/index.rst"
template = "doc/whatsnew/fragments/_template.rst"
issue_format = "`#{issue} <https://github.com/pylint-dev/pylint/issues/{issue}>`_"
wrap = true

# Definition of fragment types.
# We want the changelog to show in the same order as the fragment types
# are defined here. Therefore we have to use the array-style fragment definition.
# The table-style definition, although more concise, would be sorted alphabetically.
# https://github.com/twisted/towncrier/issues/437
[[tool.towncrier.type]]
directory = "breaking"
name = "Breaking Changes"
showcontent = true

[[tool.towncrier.type]]
directory = "user_action"
name = "Changes requiring user actions"
showcontent = true

[[tool.towncrier.type]]
directory = "feature"
name = "New Features"
showcontent = true

[[tool.towncrier.type]]
directory = "new_check"
name = "New Checks"
showcontent = true

[[tool.towncrier.type]]
directory = "removed_check"
name = "Removed Checks"
showcontent = true

[[tool.towncrier.type]]
directory = "extension"
name = "Extensions"
showcontent = true

[[tool.towncrier.type]]
directory = "false_positive"
name = "False Positives Fixed"
showcontent = true

[[tool.towncrier.type]]
directory = "false_negative"
name = "False Negatives Fixed"
showcontent = true

[[tool.towncrier.type]]
directory = "bugfix"
name = "Other Bug Fixes"
showcontent = true

[[tool.towncrier.type]]
directory = "other"
name = "Other Changes"
showcontent = true

[[tool.towncrier.type]]
directory = "internal"
name = "Internal Changes"
showcontent = true

[[tool.towncrier.type]]
directory = "performance"
name = "Performance Improvements"
showcontent = true