Skip to content

Commit c1b4099

Browse files
committed
Merge pull request #10 from x-slacks/master
Updated checkpoints and version bump to fix forking event @block 15809
2 parents 12b631b + 1ad36e7 commit c1b4099

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

bitcoin-qt.pro

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
TEMPLATE = app
22
TARGET = dobbscoin-qt
33
macx:TARGET = "Dobbscoin-Qt"
4-
VERSION = 0.8.6.1
4+
VERSION = 0.8.6.2
55
INCLUDEPATH += src src/json src/qt
66
QT += network
77
DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE

doc/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Dobbscoin 0.8.6.1 BETA
1+
Dobbscoin 0.8.6.2 BETA
22
====================
33

44
Copyright (c) 2009-2013 Bitcoin Developers

doc/release-process.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Release Process
1717

1818
###tag version in git
1919

20-
git tag -a v0.8.6.1
20+
git tag -a v0.8.6.2
2121

2222
###write release notes. git shortlog helps a lot, for example:
2323

@@ -30,7 +30,7 @@ Release Process
3030
From a directory containing the dobbscoin source, gitian-builder and gitian.sigs
3131

3232
export SIGNER=(your gitian key, ie bluematt, sipa, etc)
33-
export VERSION=0.8.6.1
33+
export VERSION=0.8.6.2
3434
pushd ./gitian-builder
3535

3636
Fetch and build inputs: (first time, or when dependency versions change)

share/setup.nsi

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ SetCompressor /SOLID lzma
55

66
# General Symbol Definitions
77
!define REGKEY "SOFTWARE\$(^Name)"
8-
!define VERSION 0.8.6.1
8+
!define VERSION 0.8.6.2
99
!define COMPANY "Dobbscoin project"
1010
!define URL http://www.dobbscoin.info/
1111

@@ -45,13 +45,13 @@ Var StartMenuGroup
4545
!insertmacro MUI_LANGUAGE English
4646

4747
# Installer attributes
48-
OutFile dobbscoin-0.8.6.1-win32-setup.exe
48+
OutFile dobbscoin-0.8.6.2-win32-setup.exe
4949
InstallDir $PROGRAMFILES\Dobbscoin
5050
CRCCheck on
5151
XPStyle on
5252
BrandingText " "
5353
ShowInstDetails show
54-
VIProductVersion 0.8.6.1
54+
VIProductVersion 0.8.6.2
5555
VIAddVersionKey ProductName Dobbscoin
5656
VIAddVersionKey ProductVersion "${VERSION}"
5757
VIAddVersionKey CompanyName "${COMPANY}"

src/checkpoints.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,12 @@ namespace Checkpoints
4343
( 13422, uint256("0xc70a40fe1c53e5525636644e625d4c38c8493b180a0ca81c9d7c9801748e6b52"))
4444
( 14496, uint256("0xd50a2656a6ac593ebb034c1d5ca5eac93220455727f677e7506629f61d566239"))
4545
( 15809, uint256("0x31cdc96eb5510e69bf2635b76b0266c0065839685bb30d9b94224d9a5c972b78"))
46+
( 15882, uint256("0xbfbbf161974b59797b5698b086fd8a5efab4786a3cee389d130da20e03d65eaf"))
4647
;
4748
static const CCheckpointData data = {
4849
&mapCheckpoints,
49-
1399736336, // * UNIX timestamp of last checkpoint block
50-
18226, // * total number of transactions between genesis and last checkpoint
50+
1399777091, // * UNIX timestamp of last checkpoint block
51+
18340, // * total number of transactions between genesis and last checkpoint
5152
// (the tx=... number in the SetBestChain debug.log lines)
5253
600.0 // * estimated number of transactions per day after checkpoint
5354
};

src/clientversion.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#define CLIENT_VERSION_MAJOR 0
1010
#define CLIENT_VERSION_MINOR 8
1111
#define CLIENT_VERSION_REVISION 6
12-
#define CLIENT_VERSION_BUILD 1
12+
#define CLIENT_VERSION_BUILD 2
1313

1414
// Set to true for release, false for prerelease or test build
1515
#define CLIENT_VERSION_IS_RELEASE true

0 commit comments

Comments
 (0)