Skip to content

Commit

Permalink
Merge pull request #30 from Sparks29032/smooth_out_rever_release
Browse files Browse the repository at this point in the history
Smooth out rever release
  • Loading branch information
sbillinge authored Sep 28, 2023
2 parents f6b670a + e03d374 commit dfd057c
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
23 changes: 23 additions & 0 deletions news/TEMPLATE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
**Added:** None

* <news item>

**Changed:** None

* <news item>

**Deprecated:** None

* <news item>

**Removed:** None

* <news item>

**Fixed:** None

* <news item>

**Security:** None

* <news item>
5 changes: 4 additions & 1 deletion rever.xsh
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@ $PROJECT = 'diffpy.utils'
$ACTIVITIES = [
'tag', # Creates a tag for the new version number
'push_tag', # Pushes the tag up to the $TAG_REMOTE
'ghrelease', # Creates a Github release entry for the new tag
'pypi', # Sends the package to pypi
'ghrelease' # Creates a Github release entry for the new tag
'conda_forge'
]
$PUSH_TAG_REMOTE = 'git@github.com:diffpy/diffpy.utils.git' # Repo to push tags to
$GITHUB_ORG = 'diffpy' # Github org for Github releases and conda-forge
$GITHUB_REPO = 'diffpy.utils' # Github repo for Github releases and conda-forge
$GHRELEASE_PREPEND = """See [CHANGELOG.md](CHANGELOG.md) for detailed release notes.
$CHANGELOG_FILENAME = 'CHANGELOG.rst'
$CHANGELOG_IGNORE = ['TEMPLATE.rst']
The release is also available at [PyPI](https://pypi.org/project/diffpy.utils/) and [Conda](https://anaconda.org/conda-forge/diffpy.utils).
""" # release message

0 comments on commit dfd057c

Please sign in to comment.