mirror of https://github.com/bitcoin/bitcoin
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
470 B
30 lines
470 B
14 years ago
|
|
||
|
* 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
|
||
|
|
||
|
{ insert useful info here }
|
||
|
|
||
|
* upload source and builds to SF
|
||
|
|
||
|
* update bitcoin.org version
|
||
|
|
||
|
* update forum version
|
||
|
|
||
|
* update wiki
|
||
|
|
||
|
* update wiki download links
|
||
|
|
||
|
|