]> git.cworth.org Git - sup/blob - release-script.txt
correct release script
[sup] / release-script.txt
1 Just a few simple steps to make a new release.
2
3 ditz release <releasename>
4 ditz changelog <releasename> > tmp.txt
5 cat History.txt >> tmp.txt
6 mv tmp.txt History.txt
7 vi History.txt    # and cleanup
8 vi ReleaseNotes   # and add whatever's necessary
9 vi www/index.html  # and bump version number
10 # ... git add, commit, etc
11 git checkout -b release-<releasename>
12 vi lib/sup.rb bin/sup # and bump BOTH version numbers
13 # ... git add, commit, etc
14 rake release VERSION=<releasename>
15 git publish-branch
16 rake upload_webpage
17 rake upload_report
18 git checkout next
19 git merge master