Received: from sog-mx-1.v43.ch3.sourceforge.com ([172.29.43.191] helo=mx.sourceforge.net) by sfs-ml-4.v29.ch3.sourceforge.com with esmtp (Exim 4.76) (envelope-from ) id 1YAdDg-00089v-Ic for bitcoin-development@lists.sourceforge.net; Mon, 12 Jan 2015 11:31:40 +0000 Received-SPF: pass (sog-mx-1.v43.ch3.sourceforge.com: domain of gmail.com designates 209.85.223.182 as permitted sender) client-ip=209.85.223.182; envelope-from=laanwj@gmail.com; helo=mail-ie0-f182.google.com; Received: from mail-ie0-f182.google.com ([209.85.223.182]) by sog-mx-1.v43.ch3.sourceforge.com with esmtps (TLSv1:RC4-SHA:128) (Exim 4.76) id 1YAdDe-0004Bs-Sx for bitcoin-development@lists.sourceforge.net; Mon, 12 Jan 2015 11:31:40 +0000 Received: by mail-ie0-f182.google.com with SMTP id x19so24600618ier.13 for ; Mon, 12 Jan 2015 03:31:33 -0800 (PST) MIME-Version: 1.0 X-Received: by 10.107.155.65 with SMTP id d62mr26814982ioe.79.1421062293544; Mon, 12 Jan 2015 03:31:33 -0800 (PST) Received: by 10.64.195.225 with HTTP; Mon, 12 Jan 2015 03:31:33 -0800 (PST) Date: Mon, 12 Jan 2015 11:31:33 +0000 Message-ID: From: Wladimir To: Bitcoin Dev Content-Type: text/plain; charset=UTF-8 X-Spam-Score: -1.6 (-) X-Spam-Report: Spam Filtering performed by mx.sourceforge.net. See http://spamassassin.org/tag/ for more details. -1.5 SPF_CHECK_PASS SPF reports sender host as permitted sender for sender-domain 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (laanwj[at]gmail.com) -0.0 SPF_PASS SPF: sender matches SPF record -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature X-Headers-End: 1YAdDe-0004Bs-Sx Subject: [Bitcoin-development] [ANN] 0.10.0rc2 has been tagged X-BeenThere: bitcoin-development@lists.sourceforge.net X-Mailman-Version: 2.1.9 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jan 2015 11:31:40 -0000 I've just tagged 0.10.0rc2 in git. To fetch, build, and test (see also doc/build-*.md): ``` git clone -b v0.10.0rc2 https://github.com/bitcoin/bitcoin.git bitcoin-0.10 cd bitcoin-0.10 ./autogen.sh ./configure make make check ``` Note: This includes the changes required for interoperability with OpenSSL 1.0.1k. Notable changes relative to v0.10.0rc1: - 4e7c219 Catch UTXO set read errors and shutdown - a3a7317 Introduce 10 minute block download timeout - 12b7c44 Improve robustness of DER recoding code - 76ce5c8 fail immediately on an empty signature - 2d375fe depends: bump openssl to 1.0.1k - ace39db consensus: guard against openssl's new strict DER checks - 263b65e tests: run sanity checks in tests too - e2677d7 Fix smartfees test for change to relay policy - b7a4ecc Build: Only check for boost when building code that requires it - 867c600 Catch LevelDB errors during flush - 008138c Bugfix: only track UTXO modification after lookup - 3022e7d Require sufficent priority for relay of free transactions - 06fdf32 bitcoin-tx: Fix JSON validation of prevtxs - 58fda4d Update seed IPs, based on bitcoin.sipa.be crawler data - 94b362d On close of splashscreen interrupt verifyDB - 1eadfd9 Bugfix: prioritisetransaction: Do some basic sanity checking on txid - 18021d0 Remove bitnodes.io from dnsseeds. - b790d13 English translation update - 8543b0d Correct tooltip on address book page - 87d43a3 rpcserver: attempt to fix uncaught exception. - 06ca065 Fix CScriptID(const CScript& in) in empty script case Wladmir