-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #375 from bids-standard/rel/0.7.1
REL: 0.7.1
- Loading branch information
Showing
3 changed files
with
78 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/bin/bash | ||
# | ||
# Collects the pull-requests since the latest release and | ||
# aranges them in the CHANGES.txt file. | ||
# | ||
# This is a script to be run before releasing a new version. | ||
# | ||
# Usage /bin/bash update_changes.sh 1.0.1 | ||
# | ||
# Adapted from https://github.com/nipy/nipype/blob/98beb0a/tools/update_changes.sh | ||
|
||
# Setting # $ help set | ||
set -u # Treat unset variables as an error when substituting. | ||
set -x # Print command traces before executing command. | ||
|
||
CHANGES=CHANGELOG.md | ||
|
||
# Elaborate today's release header | ||
HEADER="## Version $1 ($(date '+%B %d, %Y'))" | ||
cat <<END > newchanges | ||
# Changelog | ||
## Version $1 ($(date '+%B %d, %Y')) | ||
END | ||
|
||
# Search for PRs since previous release | ||
git log --grep="Merge pull request" `git describe --tags --abbrev=0`..HEAD --pretty='format:* %b %s' | sed 's+Merge pull request \(\#[^\d]*\)\ from\ .*+(\1)+' >> newchanges | ||
|
||
# Append old changes | ||
tail -n+2 $CHANGES >> newchanges | ||
|
||
# Replace old CHANGES with new file | ||
mv newchanges $CHANGES | ||
|