source: trunk/towncrier.toml

Last change on this file was 30ae30e, checked in by Jean-Paul Calderone <exarkun@…>, at 2021-10-18T12:11:49Z

fix the whitespace :/

  • Property mode set to 100644
File size: 1.6 KB
Line 
1[tool.towncrier]
2    package_dir = "src"
3    package = "allmydata"
4    filename = "NEWS.rst"
5    directory = "newsfragments"
6    start_string = ".. towncrier start line"
7    title_format = "Release {version} ({project_date})"
8    issue_format = "`#{issue} <https://tahoe-lafs.org/trac/tahoe-lafs/ticket/{issue}>`_"
9    underlines = [
10        "'",
11        "-",
12        "~",
13    ]
14
15    [[tool.towncrier.type]]
16        directory = "security"
17        name = "Security-related Changes"
18        showcontent = true
19
20    [[tool.towncrier.type]]
21        directory = "incompat"
22        name = "Backwards Incompatible Changes"
23        showcontent = true
24
25    [[tool.towncrier.type]]
26        directory = "feature"
27        name = "Features"
28        showcontent = true
29
30    [[tool.towncrier.type]]
31        directory = "bugfix"
32        name = "Bug Fixes"
33        showcontent = true
34
35    [[tool.towncrier.type]]
36        directory = "installation"
37        name = "Dependency/Installation Changes"
38        showcontent = true
39
40    [[tool.towncrier.type]]
41        directory = "configuration"
42        name = "Configuration Changes"
43        showcontent = true
44
45    [[tool.towncrier.type]]
46        directory = "documentation"
47        name = "Documentation Changes"
48        showcontent = true
49
50    [[tool.towncrier.type]]
51        directory = "removed"
52        name = "Removed Features"
53        showcontent = true
54
55    [[tool.towncrier.type]]
56        directory = "other"
57        name = "Other Changes"
58        showcontent = true
59
60    [[tool.towncrier.type]]
61        directory = "minor"
62        name = "Misc/Other"
63        showcontent = false
Note: See TracBrowser for help on using the repository browser.