-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.toml
57 lines (49 loc) · 1.65 KB
/
changelog.toml
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
# Configuration for `towncrier` used during release process to auto-generate changelog.
[tool.towncrier]
directory = "changelog.d"
filename = "CHANGELOG.md"
start_string = "<!-- changelog start -->\n"
underlines = ["", "", ""]
title_format = "## [{version} ({project_date})]"
issue_format = "https://github.com/vectordotdev/vrl/pull/{issue}"
# The following configurations specify which fragment "types" are
# allowed.
#
# If a change applies to more than one type, select the one it most
# applies to. Or, if applicable, multiple changelog fragments can be
# added for one PR. For example, if a PR includes a breaking change
# around some feature, but also fixes a bug in the same part of the
# code but is tangential to the breaking change, a separate
# fragment can be added to call out the fix.
# A change that is incompatible with prior versions which
# requires users to make adjustments.
[[tool.towncrier.type]]
directory = "breaking"
name = "Breaking Changes & Upgrade Guide"
showcontent = true
# A change that has implications for security.
[[tool.towncrier.type]]
directory = "security"
name = "Security"
showcontent = true
# A change that is introducing a deprecation.
[[tool.towncrier.type]]
directory = "deprecation"
name = "Deprecations"
showcontent = true
# A change that is introducing a new feature.
[[tool.towncrier.type]]
directory = "feature"
name = "New Features"
showcontent = true
# A change that is enhancing existing functionality in a user
# perceivable way.
[[tool.towncrier.type]]
directory = "enhancement"
name = "Enhancements"
showcontent = true
# A change that is fixing a bug.
[[tool.towncrier.type]]
directory = "fix"
name = "Fixes"
showcontent = true