Skip to content

Commit f9a2f08

Browse files
committed
Bump version numbers for 0.9.0rc1 release
1 parent 9bbbfe1 commit f9a2f08

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

configure.ac

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
22
AC_PREREQ([2.60])
33
define(_CLIENT_VERSION_MAJOR, 0)
4-
define(_CLIENT_VERSION_MINOR, 8)
5-
define(_CLIENT_VERSION_REVISION, 99)
4+
define(_CLIENT_VERSION_MINOR, 9)
5+
define(_CLIENT_VERSION_REVISION, 0)
66
define(_CLIENT_VERSION_BUILD, 0)
7-
define(_CLIENT_VERSION_IS_RELEASE, false)
7+
define(_CLIENT_VERSION_IS_RELEASE, true)
88
define(_COPYRIGHT_YEAR, 2014)
99
AC_INIT([Bitcoin Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[[email protected]],[bitcoin])
1010
AC_CONFIG_AUX_DIR([src/build-aux])

contrib/verifysfbinaries/verify.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ WORKINGDIR="/tmp/bitcoin"
1818
TMPFILE="hashes.tmp"
1919

2020
#this URL is used if a version number is not specified as an argument to the script
21-
SIGNATUREFILE="http://downloads.sourceforge.net/project/bitcoin/Bitcoin/bitcoin-0.8.2/SHA256SUMS.asc"
21+
SIGNATUREFILE="http://downloads.sourceforge.net/project/bitcoin/Bitcoin/bitcoin-0.9.0rc1/SHA256SUMS.asc"
2222

2323
SIGNATUREFILENAME="SHA256SUMS.asc"
2424
RCSUBDIR="test/"

doc/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Bitcoin 0.8.2 BETA
2-
====================
1+
Bitcoin 0.9.0rc1 BETA
2+
=====================
33

4-
Copyright (c) 2009-2013 Bitcoin Developers
4+
Copyright (c) 2009-2014 Bitcoin Developers
55

66

77
Setup

doc/README_windows.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
Bitcoin 0.8.2 BETA
1+
Bitcoin 0.9.0rc1 BETA
2+
3+
Copyright (c) 2009-2014 Bitcoin Core Developers
24

3-
Copyright (c) 2009-2013 Bitcoin Developers
45
Distributed under the MIT/X11 software license, see the accompanying
56
file COPYING or http://www.opensource.org/licenses/mit-license.php.
67
This product includes software developed by the OpenSSL Project for use in

src/clientversion.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010

1111
// These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it
1212
#define CLIENT_VERSION_MAJOR 0
13-
#define CLIENT_VERSION_MINOR 8
14-
#define CLIENT_VERSION_REVISION 99
13+
#define CLIENT_VERSION_MINOR 9
14+
#define CLIENT_VERSION_REVISION 0
1515
#define CLIENT_VERSION_BUILD 0
1616

1717
// Set to true for release, false for prerelease or test build
18-
#define CLIENT_VERSION_IS_RELEASE false
18+
#define CLIENT_VERSION_IS_RELEASE true
1919

2020
// Copyright year (2009-this)
2121
// Todo: update this when changing our copyright comments in the source

0 commit comments

Comments
 (0)