-
Notifications
You must be signed in to change notification settings - Fork 143
/
rever.xsh
23 lines (19 loc) · 1.12 KB
/
rever.xsh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$PROJECT = 'Tudat'
$ACTIVITIES = [
'authors', # authors must have commit before executing Rever, otherwise he/she will be omitted.
'version_bump', # Changes the version number in various source files (setup.py, __init__.py, etc)
'changelog', # Uses files in the news folder to create a changelog for release
'tag', # Creates a tag for the new version number
'push_tag', # Pushes the tag up to the $TAG_REMOTE
]
$VERSION_BUMP_PATTERNS = [ # These note where/how to find the version numbers
('version', '.*,', "'$VERSION'")
]
$CHANGELOG_FILENAME = 'CHANGELOG.rst' # Filename for the changelog
$CHANGELOG_TEMPLATE = 'TEMPLATE.rst' # Filename for the news template
$CHANGELOG_AUTHORS_TITLE = 'Authors'
$CHANGELOG_AUTHORS_FORMAT = '* {name}\n'
$PUSH_TAG_REMOTE = '[email protected]:tudat-team/tudat.git' # Repo to push tags to
$PUSH_TAG_PROTOCOL='ssh'
$GITHUB_ORG = 'tudat-team' # Github org for Github releases and conda-forge
$GITHUB_REPO = 'tudat' # Github repo for Github releases and conda-forge