Skip to content

Commit

Permalink
Bump version number to 0.18.3
Browse files Browse the repository at this point in the history
Summary: Per title

Test Plan:
  make check

Reviewers: #bitcoin_abc, deadalnix

Reviewed By: #bitcoin_abc, deadalnix

Subscribers: deadalnix, teamcity

Differential Revision: https://reviews.bitcoinabc.org/D1802
  • Loading branch information
Shammah Chancellor committed Sep 27, 2018
1 parent b10e567 commit 6d1f567
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 15 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -2,7 +2,7 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 0)
define(_CLIENT_VERSION_MINOR, 18)
define(_CLIENT_VERSION_REVISION, 2)
define(_CLIENT_VERSION_REVISION, 3)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2018)
Expand Down
2 changes: 1 addition & 1 deletion doc/Doxyfile
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "Bitcoin ABC"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.18.2
PROJECT_NUMBER = 0.18.3

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
12 changes: 2 additions & 10 deletions doc/release-notes.md
@@ -1,13 +1,5 @@
Bitcoin ABC version 0.18.2 is now available from:
Bitcoin ABC version 0.18.3 is now available from:

<https://download.bitcoinabc.org/0.18.2/>
<https://download.bitcoinabc.org/0.18.3/>

This release includes the following features and fixes:
- Backport abortrescan RPC call from bitcoin core.
- Backport fix to importmulti to return rescan errors.
- Backport ability to abort wallet transaction rescans.
- Backport adding listen address to incoming connections in getpeerinfo.
- Backport rescanblockchain RPC call.
- Various backports for bug fixes and performance improvements.
- Increase INVENTORY_BROADCAST_MAX, allowing more transaction broadcasts via INV.

13 changes: 13 additions & 0 deletions doc/release-notes/release-notes-0.18.2.md
@@ -0,0 +1,13 @@
Bitcoin ABC version 0.18.2 is now available from:

<https://download.bitcoinabc.org/0.18.2/>

This release includes the following features and fixes:
- Backport abortrescan RPC call from bitcoin core.
- Backport fix to importmulti to return rescan errors.
- Backport ability to abort wallet transaction rescans.
- Backport adding listen address to incoming connections in getpeerinfo.
- Backport rescanblockchain RPC call.
- Various backports for bug fixes and performance improvements.
- Increase INVENTORY_BROADCAST_MAX, allowing more transaction broadcasts via INV.

2 changes: 1 addition & 1 deletion src/clientversion.h
Expand Up @@ -18,7 +18,7 @@
//! requires it
#define CLIENT_VERSION_MAJOR 0
#define CLIENT_VERSION_MINOR 18
#define CLIENT_VERSION_REVISION 2
#define CLIENT_VERSION_REVISION 3
#define CLIENT_VERSION_BUILD 0

//! Set to true for release, false for prerelease or test build
Expand Down
2 changes: 1 addition & 1 deletion src/config/CMakeLists.txt
Expand Up @@ -12,7 +12,7 @@ set(PACKAGE_NAME "Bitcoin ABC")
# Version
set(CLIENT_VERSION_MAJOR 0)
set(CLIENT_VERSION_MINOR 18)
set(CLIENT_VERSION_REVISION 2)
set(CLIENT_VERSION_REVISION 3)
set(CLIENT_VERSION_BUILD 0)

option(CLIENT_VERSION_IS_RELEASE "Build a release version" OFF)
Expand Down
2 changes: 1 addition & 1 deletion src/test/net_tests.cpp
Expand Up @@ -198,7 +198,7 @@ BOOST_AUTO_TEST_CASE(test_userAgentLength) {

BOOST_CHECK_EQUAL(userAgent(config).size(), MAX_SUBVERSION_LENGTH);
BOOST_CHECK_EQUAL(userAgent(config),
"/Bitcoin ABC:0.18.2(EB8.0; very very very very very "
"/Bitcoin ABC:0.18.3(EB8.0; very very very very very "
"very very very very very very very very very very very "
"very very very very very very very very very very very "
"very very very very very very very very very very very "
Expand Down

0 comments on commit 6d1f567

Please sign in to comment.