Skip to content

Commit

Permalink
RELEASE: Add RELEASE.txt file for instructions
Browse files Browse the repository at this point in the history
This should help us make our releases more consistent and also
add instructions for what to do when things get more complex.
  • Loading branch information
dustymabe authored and cgwalters committed Oct 13, 2018
1 parent 5afc290 commit efa2a86
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions RELEASE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

# Rough notes for release:

# Grab the pretty gitlog grouped by contributor
LASTTAG='v0.2.0'
NEWTAG='v0.3.0'
git shortlog --no-merges --pretty=format:"%h %s" -e ${LASTTAG}..HEAD

# Create a tag using git-evtag (will pop open vim window)
# Copy in notes from shortlog command and add release message.
git-evtag sign ${NEWTAG}

# verify using git-evtag and git
git-evtag verify ${NEWTAG}
git verify-tag ${NEWTAG}

# push to the remote (change if your remote is named different)
REMOTE=origin
git push ${REMOTE} --tags

0 comments on commit efa2a86

Please sign in to comment.