diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 3ea8a95ef..dc08a6743 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -1,7 +1,7 @@ TEMPLATE = app TARGET = litecoin-qt macx:TARGET = "Litecoin-Qt" -VERSION = 0.8.7.4 +VERSION = 0.8.7.5 INCLUDEPATH += src src/json src/qt QT += core gui network greaterThan(QT_MAJOR_VERSION, 4): QT += widgets diff --git a/doc/release-notes.md b/doc/release-notes.md index a92aaed99..5ea903839 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -1,3 +1,10 @@ +0.8.7.5 changes +============= +- openssl-1.0.1k or older versions patched for CVE-2014-8275 broke compatibility with Bitcoin and Litecoin. + This update patches Litecoin to maintain compatibility with CVE-2014-8275 patched openssl. +- If you are running v0.8.7.4 as distributed by litecoin.org you do not need to upgrade. + The binaries distributed on litecoin.org contain their own copy of openssl so they are unaffected by this issue. + 0.8.7.4 changes ============= - Enforce v2 blocks at height 710000 on mainnet, 400000 on testnet diff --git a/doc/release-process.md b/doc/release-process.md index d3ac6469b..440e7ab90 100644 --- a/doc/release-process.md +++ b/doc/release-process.md @@ -34,7 +34,7 @@ Release Process mkdir -p inputs; cd inputs/ wget 'http://miniupnp.free.fr/files/download.php?file=miniupnpc-1.9.20140401.tar.gz' -O miniupnpc-1.9.20140401.tar.gz' - wget 'https://www.openssl.org/source/openssl-1.0.1i.tar.gz' + wget 'https://www.openssl.org/source/openssl-1.0.1k.tar.gz' wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz' wget 'http://zlib.net/zlib-1.2.8.tar.gz' wget 'ftp://ftp.simplesystems.org/pub/libpng/png/src/history/libpng16/libpng-1.6.8.tar.gz' diff --git a/share/setup.nsi b/share/setup.nsi index 3182ca66d..2f693d55b 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.8.7.4 +!define VERSION 0.8.7.5 !define COMPANY "Litecoin project" !define URL http://www.litecoin.org/ diff --git a/src/clientversion.h b/src/clientversion.h index e5035bbd2..58e7f2a92 100644 --- a/src/clientversion.h +++ b/src/clientversion.h @@ -9,7 +9,7 @@ #define CLIENT_VERSION_MAJOR 0 #define CLIENT_VERSION_MINOR 8 #define CLIENT_VERSION_REVISION 7 -#define CLIENT_VERSION_BUILD 4 +#define CLIENT_VERSION_BUILD 5 // Set to true for release, false for prerelease or test build #define CLIENT_VERSION_IS_RELEASE true