Skip to content

Commit

Permalink
Bump version to 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dexX7 committed Oct 30, 2019
1 parent b006974 commit 3c6e31b
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, 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/])
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.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");
}


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 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
Expand Down

0 comments on commit 3c6e31b

Please sign in to comment.