Add minimal release process docs.
[novacoin.git] / doc / release-process.txt
1
2 * tag version in git
3
4   $ git tag -a v0.3.23
5
6 * write release notes.  git shortlog helps a lot:
7
8   $ git shortlog --no-merges v0.3.22..
9
10 * create source-only archive
11
12   $ git archive --format=tar --prefix=bitcoin-0.3.23/ HEAD | \
13         gzip -9c > ~/tmp/bitcoin-0.3.23-src.tar.gz 
14
15 * perform gitian builds
16
17   { insert useful info here }
18  
19 * upload source and builds to SF
20
21 * update bitcoin.org version
22
23 * update forum version
24
25 * update wiki
26
27 * update wiki download links
28
29