-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (53 loc) · 1.36 KB
/
pyproject.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
58
59
60
61
62
63
64
[tool.bumpver]
current_version = "2021.1003.5"
version_pattern = "YYYY.BUILD.UU"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = false
push = false
[tool.bumpver.file_patterns]
"README.md" = [
"version: {version}",
]
"src/templates/__init__.py" = [
'__version__ = "{version}"',
]
[tool.towncrier]
package = "templates"
package_dir = "src"
filename = "CHANGELOG.rst"
title_format = "{name} {version} ({project_date})"
wrap = true # Wrap text to 79 characters
all_bullets = true # make all fragments bullet points
[[tool.towncrier.type]]
directory = "added"
name = "Added new features"
showcontent = true
[[tool.towncrier.type]]
directory = "changed"
name = "Changed existing functionality"
showcontent = true
[[tool.towncrier.type]]
directory = "deprecated"
name = "Marked for removal"
showcontent = true
[[tool.towncrier.type]]
directory = "removed"
name = "Removed from package"
showcontent = true
[[tool.towncrier.type]]
directory = "fixed"
name = "Bug fixes"
showcontent = true
[[tool.towncrier.type]]
directory = "security"
name = "Patched vulnerabilities"
showcontent = true
[[tool.towncrier.type]]
directory = "doc"
name = "Improved Documentation"
showcontent = true
[[tool.towncrier.type]]
directory = "trivial"
name = "Trivial/Internal Changes"
showcontent = true