Bumped version numbers to 0.4.0rc1
[novacoin.git] / doc / release-process.txt
1 * update (commit) version in sources
2   src/serialize.h
3   share/setup.nsi
4
5 * update (commit) version in OSX app bundle
6  contrib/Bitcoin.app/Contents/Info.plist
7
8   * CFBundleShortVersionString should have value like 0.3.23
9   * CFBundleVersion should have value like 323
10
11 * tag version in git
12
13   $ git tag -a v0.3.23
14
15 * write release notes.  git shortlog helps a lot:
16
17   $ git shortlog --no-merges v0.3.22..
18
19 * create source-only archive
20
21   $ git archive --format=tar --prefix=bitcoin-0.3.23/ HEAD | \
22         gzip -9c > ~/tmp/bitcoin-0.3.23-src.tar.gz 
23
24 * perform gitian builds
25
26   * From the bitcoin source dir
27   $ cd ../gitian-builder
28   $ ./bin/gbuild --commit bitcoin=v0.3.23 ../bitcoin/contrib/gitian.yml
29   $ ./bin/gbuild --commit bitcoin=v0.3.23 ../bitcoin/contrib/gitian-win32.yml
30  
31   Build output expected:
32   1. linux 32-bit and 64-bit binaries + source
33   2. windows 32-bit binary + source
34   3. windows installer
35
36 * upload source and builds to SF
37
38 * create SHA1SUMS for builds, and PGP-sign it
39
40 * update bitcoin.org version
41
42 * update forum version
43
44 * update wiki
45
46 * update wiki download links
47
48