Link senders and recievers to the rate manager.
[etorrent.git] / doc / new_version.txt
blobc179ea82a9ecf786da04da7b9d407e683a48fe65
1 How to get a new version of etorrent out:
3 - Make sure the master branch has everything you want it to have
5 - Edit version.hrl
7 - Write NEWS if not already up-to-date
9 - git tag -s -u <key> v0.9
10   Tag the master branch with the version
12 - git checkout maint
13   git reset --hard v0.9
14   Reset the maint branch to the new point
16 - git push -f origin
17   Update origin
19 - git push --tag origin
20   Push the tag
22 ---
24 Create an archive:
26 git archive --format=tar --prefix=etorrent-0.9/ v0.9 \
27     | gzip > etorrent-0.9.tar.gz