Skip to content

Commit

Permalink
REL: 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies committed Jul 15, 2019
1 parent 8ef5b7c commit bef8d0b
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
11 changes: 11 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Changelog
=========

Version 0.0.2 (July 15, 2019)
-----------------------------

* ENH: Add Python BIDS App skeleton (#18)
* TEST: Test util/git.py (#21)
* TEST: Test packaging and Python 3.8 builds (#19)
* STY: Switch to Black (#19)
* DOC: Update README (#19)
36 changes: 36 additions & 0 deletions tools/update_changes.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#!/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=CHANGES.rst

# Elaborate today's release header
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

0 comments on commit bef8d0b

Please sign in to comment.