Skip to content

Commit dfd057c

Browse files
authored
Merge pull request #30 from Sparks29032/smooth_out_rever_release
Smooth out rever release
2 parents f6b670a + e03d374 commit dfd057c

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

Diff for: news/TEMPLATE.rst

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
**Added:** None
2+
3+
* <news item>
4+
5+
**Changed:** None
6+
7+
* <news item>
8+
9+
**Deprecated:** None
10+
11+
* <news item>
12+
13+
**Removed:** None
14+
15+
* <news item>
16+
17+
**Fixed:** None
18+
19+
* <news item>
20+
21+
**Security:** None
22+
23+
* <news item>

Diff for: rever.xsh

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@ $PROJECT = 'diffpy.utils'
22
$ACTIVITIES = [
33
'tag', # Creates a tag for the new version number
44
'push_tag', # Pushes the tag up to the $TAG_REMOTE
5+
'ghrelease', # Creates a Github release entry for the new tag
56
'pypi', # Sends the package to pypi
6-
'ghrelease' # Creates a Github release entry for the new tag
7+
'conda_forge'
78
]
89
$PUSH_TAG_REMOTE = '[email protected]:diffpy/diffpy.utils.git' # Repo to push tags to
910
$GITHUB_ORG = 'diffpy' # Github org for Github releases and conda-forge
1011
$GITHUB_REPO = 'diffpy.utils' # Github repo for Github releases and conda-forge
1112
$GHRELEASE_PREPEND = """See [CHANGELOG.md](CHANGELOG.md) for detailed release notes.
13+
$CHANGELOG_FILENAME = 'CHANGELOG.rst'
14+
$CHANGELOG_IGNORE = ['TEMPLATE.rst']
1215
1316
The release is also available at [PyPI](https://pypi.org/project/diffpy.utils/) and [Conda](https://anaconda.org/conda-forge/diffpy.utils).
1417
""" # release message

0 commit comments

Comments
 (0)