From 3e342bde78cb7198f01b704faa4584fa160820d7 Mon Sep 17 00:00:00 2001 From: dexX7 Date: Thu, 27 Feb 2020 14:37:13 +0100 Subject: [PATCH] Bump version to 0.8.0 Update the version and version tests from 0.7.1 to 0.8.0 --- configure.ac | 4 ++-- src/omnicore/test/version_tests.cpp | 6 +++--- src/omnicore/version.h | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/configure.ac b/configure.ac index 2dd56ef7fccc7..bda3cc680dd20 100644 --- a/configure.ac +++ b/configure.ac @@ -10,8 +10,8 @@ define(_COPYRIGHT_YEAR, 2019) define(_COPYRIGHT_HOLDERS,[The %s developers]) define(_COPYRIGHT_HOLDERS_SUBSTITUTION,[[Bitcoin Core and Omni Core]]) define(_OMNICORE_VERSION_MAJOR, 0) -define(_OMNICORE_VERSION_MINOR, 7) -define(_OMNICORE_VERSION_PATCH, 1) +define(_OMNICORE_VERSION_MINOR, 8) +define(_OMNICORE_VERSION_PATCH, 0) define(_OMNICORE_VERSION_BUILD, 0) define(_OMNICORE_VERSION_RC, 0) AC_INIT([Omni Core],m4_join([.], _OMNICORE_VERSION_MAJOR, _OMNICORE_VERSION_MINOR, _OMNICORE_VERSION_PATCH, m4_if(_OMNICORE_VERSION_BUILD, [0], [], _OMNICORE_VERSION_BUILD))m4_if(_OMNICORE_VERSION_RC, [0], [], [rc]_OMNICORE_VERSION_RC),[https://github.com/OmniLayer/omnicore/issues],[omnicore],[http://www.omnilayer.org/]) diff --git a/src/omnicore/test/version_tests.cpp b/src/omnicore/test/version_tests.cpp index fd9f116a08476..95c3da0e7e889 100644 --- a/src/omnicore/test/version_tests.cpp +++ b/src/omnicore/test/version_tests.cpp @@ -23,18 +23,18 @@ BOOST_AUTO_TEST_CASE(version_comparison) BOOST_AUTO_TEST_CASE(version_string) { - BOOST_CHECK_EQUAL(OmniCoreVersion(), "0.7.1"); + BOOST_CHECK_EQUAL(OmniCoreVersion(), "0.8.0"); } BOOST_AUTO_TEST_CASE(version_number) { - BOOST_CHECK_EQUAL(OMNICORE_VERSION, 70001000); + BOOST_CHECK_EQUAL(OMNICORE_VERSION, 80000000); } BOOST_AUTO_TEST_CASE(config_package_version) { // the package version is used in the file names: - BOOST_CHECK_EQUAL(PACKAGE_VERSION, "0.7.1"); + BOOST_CHECK_EQUAL(PACKAGE_VERSION, "0.8.0"); } diff --git a/src/omnicore/version.h b/src/omnicore/version.h index ef2114ffa37d2..c6c546b0f234a 100644 --- a/src/omnicore/version.h +++ b/src/omnicore/version.h @@ -15,10 +15,10 @@ #define OMNICORE_VERSION_MAJOR 0 // Increase with every non-consensus affecting feature -#define OMNICORE_VERSION_MINOR 7 +#define OMNICORE_VERSION_MINOR 8 // Increase with every patch, which is not a feature or consensus affecting -#define OMNICORE_VERSION_PATCH 1 +#define OMNICORE_VERSION_PATCH 0 // Non-public build number/revision (usually zero) #define OMNICORE_VERSION_BUILD 0