aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Garzik <[email protected]>2011-06-10 02:14:56 -0400
committerJeff Garzik <[email protected]>2011-06-10 02:14:56 -0400
commit6854a2ade6fe053f0c8baf81551846c4af2c1490 (patch)
tree6b6a75ceb3d2b1b7a54b7c5aa3bd2aa42fcbb620
parentLower minimum relay TX fee to 0.0001 (from 0.0005) BTC. (diff)
downloaddiscoin-6854a2ade6fe053f0c8baf81551846c4af2c1490.tar.xz
discoin-6854a2ade6fe053f0c8baf81551846c4af2c1490.zip
Add minimal release process docs.
-rw-r--r--doc/release-process.txt29
1 files changed, 29 insertions, 0 deletions
diff --git a/doc/release-process.txt b/doc/release-process.txt
new file mode 100644
index 000000000..f8882399b
--- /dev/null
+++ b/doc/release-process.txt
@@ -0,0 +1,29 @@
+
+* 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
+
+