This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
| 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 rank-contributors -o > CONTRIBUTORS |
| 11 |
vi CONTRIBUTORS # and merge |
| 12 |
vi www/index.html # and include CONTRIBUTORS |
| 13 |
# ... git add, commit, etc |
| 14 |
git checkout -b release-<releasename> |
| 15 |
vi lib/sup.rb bin/sup # and bump BOTH version numbers |
| 16 |
# ... git add, commit, etc |
| 17 |
rake release VERSION=<releasename> |
| 18 |
git publish-branch |
| 19 |
rake upload_webpage |
| 20 |
rake upload_report |
| 21 |
git checkout next |
| 22 |
git merge master |