doc/release-process.txt: minor updates
[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   Build output expected:
20   1. linux 32-bit and 64-bit binaries + source
21   2. windows 32-bit binary + source
22   3. windows installer
23
24 * upload source and builds to SF
25
26 * create SHA1SUMS for builds, and PGP-sign it
27
28 * update bitcoin.org version
29
30 * update forum version
31
32 * update wiki
33
34 * update wiki download links
35
36