Skip to content

Commit

Permalink
Merge #1080: Bump version to 0.8.0
Browse files Browse the repository at this point in the history
3e342bd Bump version to 0.8.0 (dexX7)

Pull request description:

  Update the version and version tests from 0.7.1 to 0.8.0

Tree-SHA512: b0333054c9ec68105ca148567be7223d5b8efbc7542464cb35a3256da5872c77116da4103dd4d0c2039eb21142b2e9e45b0440134edd5a963dbd5078efce06f0
  • Loading branch information
dexX7 committed Feb 27, 2020
2 parents 093070f + 3e342bd commit 70fe939
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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/])
Expand Down
6 changes: 3 additions & 3 deletions src/omnicore/test/version_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}


Expand Down
4 changes: 2 additions & 2 deletions src/omnicore/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 70fe939

Please sign in to comment.