Add OSX App bundle and correct build instructions to reflect reality.
[novacoin.git] / doc / release-process.txt
1 * update (commit) version in sources
2
3 * update (commit) version in OSX app bundle
4
5   * CFBundleShortVersionString should have value like 0.3.23
6   * CFBundleVersion should have value like 323
7
8 * tag version in git
9
10   $ git tag -a v0.3.23
11
12 * write release notes.  git shortlog helps a lot:
13
14   $ git shortlog --no-merges v0.3.22..
15
16 * create source-only archive
17
18   $ git archive --format=tar --prefix=bitcoin-0.3.23/ HEAD | \
19         gzip -9c > ~/tmp/bitcoin-0.3.23-src.tar.gz 
20
21 * perform gitian builds
22
23   { insert useful info here }
24  
25   Build output expected:
26   1. linux 32-bit and 64-bit binaries + source
27   2. windows 32-bit binary + source
28   3. windows installer
29
30 * upload source and builds to SF
31
32 * create SHA1SUMS for builds, and PGP-sign it
33
34 * update bitcoin.org version
35
36 * update forum version
37
38 * update wiki
39
40 * update wiki download links
41
42