From: Luke Dashjr Date: Thu, 14 Jun 2012 18:07:11 +0000 (+0000) Subject: Merge branch '0.4.x' into 0.5.x X-Git-Tag: v0.4.0-unstable~129^2~1^2^2^2 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=3703150d56ff6ee557ab330e55637c9c23835902 Merge branch '0.4.x' into 0.5.x Conflicts: doc/release-process.txt src/serialize.h --- 3703150d56ff6ee557ab330e55637c9c23835902 diff --cc doc/release-process.txt index 2d483d3,8a236a7..468d037 --- a/doc/release-process.txt +++ b/doc/release-process.txt @@@ -87,45 -44,9 +87,47 @@@ * update forum version -* update wiki - * update wiki download links + * update wiki changelog: https://en.bitcoin.it/wiki/Changelog + +* Commit your signature to gitian.sigs: + pushd gitian.sigs + git add ${VERSION}/${SIGNER} + git add ${VERSION}-win32/${SIGNER} + git commit -a + git push # Assuming you can push to the gitian.sigs tree + popd + +------------------------------------------------------------------------- + +* After 3 or more people have gitian-built, repackage gitian-signed zips: + + * From a directory containing bitcoin source, gitian.sigs and gitian zips + export VERSION=0.5.1 + mkdir bitcoin-${VERSION}-linux-gitian + pushd bitcoin-${VERSION}-linux-gitian + unzip ../bitcoin-${VERSION}-linux-gitian.zip + mkdir gitian + cp ../bitcoin/contrib/gitian-downloader/*.pgp ./gitian/ + for signer in $(ls ../gitian.sigs/${VERSION}/); do + cp ../gitian.sigs/${VERSION}/${signer}/bitcoin-build.assert ./gitian/${signer}-build.assert + cp ../gitian.sigs/${VERSION}/${signer}/bitcoin-build.assert.sig ./gitian/${signer}-build.assert.sig + done + zip -r bitcoin-${VERSION}-linux-gitian.zip * + cp bitcoin-${VERSION}-linux-gitian.zip ../ + popd + mkdir bitcoin-${VERSION}-win32-gitian + pushd bitcoin-${VERSION}-win32-gitian + unzip ../bitcoin-${VERSION}-win32-gitian.zip + mkdir gitian + cp ../bitcoin/contrib/gitian-downloader/*.pgp ./gitian/ + for signer in $(ls ../gitian.sigs/${VERSION}-win32/); do + cp ../gitian.sigs/${VERSION}-win32/${signer}/bitcoin-build.assert ./gitian/${signer}-build.assert + cp ../gitian.sigs/${VERSION}-win32/${signer}/bitcoin-build.assert.sig ./gitian/${signer}-build.assert.sig + done + zip -r bitcoin-${VERSION}-win32-gitian.zip * + cp bitcoin-${VERSION}-win32-gitian.zip ../ + popd + + * Upload gitian zips to SourceForge diff --cc src/serialize.h index b1fabb7,db3c963..61d80d7 --- a/src/serialize.h +++ b/src/serialize.h @@@ -60,7 -59,7 +60,7 @@@ class CDataStream class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; - static const int VERSION = 50600; -static const int VERSION = 40701; ++static const int VERSION = 50601; static const char* pszSubVer = ""; static const bool VERSION_IS_BETA = true;