summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2018-01-18 21:30:31 -0700
committerGitHub <noreply@github.com>2018-01-18 21:30:31 -0700
commitd370662e8d21dc72e2145cc2d6d1de1a4ed630f3 (patch)
tree3643713c3841e9a3d4af2c44aee9136239db91e2
parent7d2c9d1b32a2d76d28453705e6f8b589d7e273d7 (diff)
parent2dfa9e88864f17f7d097e413fa74561feb8f6515 (diff)
downloadnumpy-d370662e8d21dc72e2145cc2d6d1de1a4ed630f3.tar.gz
Merge pull request #10434 from charris/rename-announce-to-changelog
MAINT: Move `tools/announce.py` to `tools/changelog.py`.
-rwxr-xr-xtools/changelog.py (renamed from tools/announce.py)8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/announce.py b/tools/changelog.py
index 05ea8cb36..84e046c5f 100755
--- a/tools/announce.py
+++ b/tools/changelog.py
@@ -1,10 +1,10 @@
#!/usr/bin/env python
# -*- encoding:utf-8 -*-
"""
-Script to generate contribor and pull request lists
+Script to generate contributor and pull request lists
This script generates contributor and pull request lists for release
-announcements using Github v3 protocol. Use requires an authentication token in
+changelogs using Github v3 protocol. Use requires an authentication token in
order to have sufficient bandwidth, you can get one following the directions at
`<https://help.github.com/articles/creating-an-access-token-for-command-line-use/>_
Don't add any scope, as the default is read access to public information. The
@@ -28,9 +28,9 @@ Some code was copied from scipy `tools/gh_list.py` and `tools/authors.py`.
Examples
--------
-From the bash command line with $GITHUB token.
+From the bash command line with $GITHUB token::
- $ ./tools/announce $GITHUB v1.11.0..v1.11.1 > announce.rst
+ $ ./tools/announce $GITHUB v1.13.0..v1.14.0 > 1.14.0-changelog.rst
"""
from __future__ import print_function, division