Skip to content

Commit 2c31cfc

Browse files
committed
Bump version numbers for 0.6.1rc1
1 parent dfead66 commit 2c31cfc

File tree

8 files changed

+9
-13
lines changed

8 files changed

+9
-13
lines changed

bitcoin-qt.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
TEMPLATE = app
22
TARGET =
3-
VERSION = 0.6.0
3+
VERSION = 0.6.1
44
INCLUDEPATH += src src/json src/qt
55
DEFINES += QT_GUI BOOST_THREAD_USE_LIB
66
CONFIG += no_include_pwd

doc/README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Bitcoin 0.6.0 BETA
1+
Bitcoin 0.6.1rc1 BETA
22

33
Copyright (c) 2009-2012 Bitcoin Developers
44
Distributed under the MIT/X11 software license, see the accompanying

doc/README_windows.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Bitcoin 0.6.0 BETA
1+
Bitcoin 0.6.1rc1 BETA
22

33
Copyright (c) 2009-2012 Bitcoin Developers
44
Distributed under the MIT/X11 software license, see the accompanying

doc/release-process.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
* update (commit) version in sources
44
bitcoin-qt.pro
5-
src/version.cpp
5+
src/version.h
66
share/setup.nsi
77
doc/README*
88

share/setup.nsi

Lines changed: 3 additions & 3 deletions
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.6.0
8+
!define VERSION 0.6.1
99
!define COMPANY "Bitcoin project"
1010
!define URL http://www.bitcoin.org/
1111

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

4747
# Installer attributes
48-
OutFile bitcoin-0.6.0-win32-setup.exe
48+
OutFile bitcoin-0.6.1rc1-win32-setup.exe
4949
InstallDir $PROGRAMFILES\Bitcoin
5050
CRCCheck on
5151
XPStyle on
5252
BrandingText " "
5353
ShowInstDetails show
54-
VIProductVersion 0.6.0.99
54+
VIProductVersion 0.6.1.1
5555
VIAddVersionKey ProductName Bitcoin
5656
VIAddVersionKey ProductVersion "${VERSION}"
5757
VIAddVersionKey CompanyName "${COMPANY}"

src/obj/nogui/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

src/obj/test/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

src/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212

1313
static const int CLIENT_VERSION_MAJOR = 0;
1414
static const int CLIENT_VERSION_MINOR = 6;
15-
static const int CLIENT_VERSION_REVISION = 0;
16-
static const int CLIENT_VERSION_BUILD = 99;
15+
static const int CLIENT_VERSION_REVISION = 1;
16+
static const int CLIENT_VERSION_BUILD = 1;
1717

1818
static const int CLIENT_VERSION =
1919
1000000 * CLIENT_VERSION_MAJOR

0 commit comments

Comments
 (0)