From 3c6e31b410ceabdf3ed462560cc2264459f94099 Mon Sep 17 00:00:00 2001 From: dexX7 Date: Wed, 30 Oct 2019 11:49:58 +0100 Subject: [PATCH] Bump version to 0.7.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 ecd854995c85d..adc9433395702 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, 6) -define(_OMNICORE_VERSION_PATCH, 1) +define(_OMNICORE_VERSION_MINOR, 7) +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 2ea78af444302..d69351141c7c2 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.6.1"); + BOOST_CHECK_EQUAL(OmniCoreVersion(), "0.7.0"); } BOOST_AUTO_TEST_CASE(version_number) { - BOOST_CHECK_EQUAL(OMNICORE_VERSION, 60001000); + BOOST_CHECK_EQUAL(OMNICORE_VERSION, 70000000); } BOOST_AUTO_TEST_CASE(config_package_version) { // the package version is used in the file names: - BOOST_CHECK_EQUAL(PACKAGE_VERSION, "0.6.1"); + BOOST_CHECK_EQUAL(PACKAGE_VERSION, "0.7.0"); } diff --git a/src/omnicore/version.h b/src/omnicore/version.h index 4770ddd411c48..df4fed24c966d 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 6 +#define OMNICORE_VERSION_MINOR 7 // 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