aboutsummaryrefslogtreecommitdiff
path: root/doc/release-process.txt
blob: 4940afefa5f5f295d6f872a0c9684d6605e86a0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
* update (commit) version in sources

* update (commit) version in OSX app bundle

  * CFBundleShortVersionString should have value like 0.3.23
  * CFBundleVersion should have value like 323

* tag version in git

  $ git tag -a v0.3.23

* write release notes.  git shortlog helps a lot:

  $ git shortlog --no-merges v0.3.22..

* create source-only archive

  $ git archive --format=tar --prefix=bitcoin-0.3.23/ HEAD | \
  	gzip -9c > ~/tmp/bitcoin-0.3.23-src.tar.gz 

* perform gitian builds

  * From the bitcoin source dir
  $ cd ../gitian-builder
  $ ./bin/gbuild --commit bitcoin=v0.3.23 ../bitcoin/contrib/gitian.yml
  $ ./bin/gbuild --commit bitcoin=v0.3.23 ../bitcoin/contrib/gitian-win32.yml
 
  Build output expected:
  1. linux 32-bit and 64-bit binaries + source
  2. windows 32-bit binary + source
  3. windows installer

* upload source and builds to SF

* create SHA1SUMS for builds, and PGP-sign it

* update bitcoin.org version

* update forum version

* update wiki

* update wiki download links