1
Just a few simple steps to make a new release.
2
3
vi History.txt
4
vi ReleaseNotes
5
vi www/index.html # and bump version number
6
git rank-contributors -n -o > CONTRIBUTORS
7
vi CONTRIBUTORS   # and merge
8
vi www/index.html # and include CONTRIBUTORS
9
# ... git add, commit, etc
10
git checkout -b release-<releasename>
11
vi lib/sup.rb bin/* # and bump version numbers in all files
12
# ... git add, commit, etc
13
rake gem
14
rake tarball
15
gem push pkg/<gem name> # now using gemcutter
16
git publish-branch
17
rake upload_webpage