forked from conda-incubator/conda-mirror
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rever.xsh
43 lines (35 loc) · 859 Bytes
/
rever.xsh
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
$ACTIVITIES = [
"authors",
"changelog",
"tag",
"push_tag",
"pypi",
"ghrelease",
#"conda_forge",
]
#
# Basic settings
#
$PROJECT = $GITHUB_REPO = "conda-mirror"
$GITHUB_ORG = "regro"
$AUTHORS_FILENAME = "AUTHORS.md"
$PYPI_SIGN = False
#
# Changelog settings
#
$CHANGELOG_FILENAME = "CHANGELOG.md"
$CHANGELOG_TEMPLATE = "TEMPLATE.md"
$CHANGELOG_PATTERN = "<!-- current developments -->"
$CHANGELOG_HEADER = """<!-- current developments -->
## [$VERSION](https://github.com/regro/conda-mirror/tree/$VERSION) ($RELEASE_DATE)
"""
$CHANGELOG_CATEGORIES = (
"Implemented enhancements",
"Fixed bugs",
"Closed issues",
"Merged pull requests",
)
def title_formatter(category):
return '**' + category + ':**\n\n'
$CHANGELOG_CATEGORY_TITLE_FORMAT = title_formatter
$CHANGELOG_AUTHORS_TITLE = "Contributors"