Skip to content

Commit

Permalink
Merge bitcoin#515: Bump version to Omni Core 0.3.0
Browse files Browse the repository at this point in the history
a560ddd Bump version to Omni Core 0.3.0 (dexX7)
  • Loading branch information
dexX7 committed Dec 11, 2017
2 parents d3fa573 + a560ddd commit 49a3607
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ define(_CLIENT_VERSION_MAJOR, 0)
define(_CLIENT_VERSION_MINOR, 13)
define(_CLIENT_VERSION_REVISION, 2)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_IS_RELEASE, false)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2017)
define(_COPYRIGHT_HOLDERS,[The %s developers])
define(_COPYRIGHT_HOLDERS_SUBSTITUTION,[[Bitcoin Core and Omni Core]])
define(_OMNICORE_VERSION_MAJOR, 0)
define(_OMNICORE_VERSION_MINOR, 2)
define(_OMNICORE_VERSION_PATCH, 99)
define(_OMNICORE_VERSION_MINOR, 3)
define(_OMNICORE_VERSION_PATCH, 0)
define(_OMNICORE_VERSION_BUILD, 0)
AC_INIT([Omni Core],[_OMNICORE_VERSION_MAJOR._OMNICORE_VERSION_MINOR._OMNICORE_VERSION_PATCH],[https://github.com/OmniLayer/omnicore/issues],[omnicore],[http://www.omnilayer.org/])
AC_CONFIG_SRCDIR([src/main.cpp])
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.2.99");
BOOST_CHECK_EQUAL(OmniCoreVersion(), "0.3.0");
}

BOOST_AUTO_TEST_CASE(version_number)
{
BOOST_CHECK_EQUAL(OMNICORE_VERSION, 20099000);
BOOST_CHECK_EQUAL(OMNICORE_VERSION, 30000000);
}

BOOST_AUTO_TEST_CASE(config_package_version)
{
// the package version is used in the file names:
BOOST_CHECK_EQUAL(PACKAGE_VERSION, "0.2.99");
BOOST_CHECK_EQUAL(PACKAGE_VERSION, "0.3.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 2
#define OMNICORE_VERSION_MINOR 3

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

// Non-public build number/revision (usually zero)
#define OMNICORE_VERSION_BUILD 0
Expand Down

0 comments on commit 49a3607

Please sign in to comment.