Skip to content

Commit

Permalink
Adding notes for making a release
Browse files Browse the repository at this point in the history
  • Loading branch information
khuck committed Nov 26, 2018
1 parent df81164 commit ee83889
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/scripts/make_release.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
1) Generate a changelog from the last tag:

git log $(git describe --tags --abbrev=0)..HEAD --pretty=format:'<li> <a href="http://github.com/khuck/xpress-apex/commit/%H">view commit &bull;</a> %s</li> ' --reverse > changelog.txt

2) create a new tag

git tag -a -F changelog.txt v2.1.1

3) push that tag, merge iwth master

git checkout master
git pull
git merge develop
git push origin
git push --tags origin

0 comments on commit ee83889

Please sign in to comment.