Skip to content

Commit

Permalink
Merge #1254: Bump version to Omni Core 0.12.0
Browse files Browse the repository at this point in the history
Pull request description:

  This pull request updates the version of Omni Core to 0.12.0.
  • Loading branch information
dexX7 committed May 24, 2022
2 parents 8be1baf + b83e08f commit d9d3b49
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ define(_COPYRIGHT_YEAR, 2021)
define(_COPYRIGHT_HOLDERS,[The %s developers])
define(_COPYRIGHT_HOLDERS_SUBSTITUTION,[[Bitcoin Core and Omni Core]])
define(_OMNICORE_VERSION_MAJOR, 0)
define(_OMNICORE_VERSION_MINOR, 11)
define(_OMNICORE_VERSION_MINOR, 12)
define(_OMNICORE_VERSION_PATCH, 0)
define(_OMNICORE_VERSION_BUILD, 0)
define(_OMNICORE_VERSION_RC, 0)
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.11.0");
BOOST_CHECK_EQUAL(OmniCoreVersion(), "0.12.0");
}

BOOST_AUTO_TEST_CASE(version_number)
{
BOOST_CHECK_EQUAL(OMNICORE_VERSION, 110000000);
BOOST_CHECK_EQUAL(OMNICORE_VERSION, 120000000);
}

BOOST_AUTO_TEST_CASE(config_package_version)
{
// the package version is used in the file names:
BOOST_CHECK_EQUAL(PACKAGE_VERSION, "0.11.0");
BOOST_CHECK_EQUAL(PACKAGE_VERSION, "0.12.0");
}


Expand Down
2 changes: 1 addition & 1 deletion src/omnicore/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#define OMNICORE_VERSION_MAJOR 0

// Increase with every non-consensus affecting feature
#define OMNICORE_VERSION_MINOR 11
#define OMNICORE_VERSION_MINOR 12

// Increase with every patch, which is not a feature or consensus affecting
#define OMNICORE_VERSION_PATCH 0
Expand Down

0 comments on commit d9d3b49

Please sign in to comment.