Skip to content

Commit

Permalink
Merge #931: Bump version to Omni Core 0.5.0
Browse files Browse the repository at this point in the history
9c799cb Bump version to Omni Core 0.5.0 (dexX7)
  • Loading branch information
dexX7 committed May 2, 2019
2 parents 6df4627 + 9c799cb commit 1bbbfc9
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,14 +4,14 @@ 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, 4)
define(_OMNICORE_VERSION_MINOR, 5)
define(_OMNICORE_VERSION_PATCH, 0)
define(_OMNICORE_VERSION_BUILD, 99)
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])
AC_CONFIG_HEADERS([src/config/bitcoin-config.h])
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.4.0.99");
BOOST_CHECK_EQUAL(OmniCoreVersion(), "0.5.0");
}

BOOST_AUTO_TEST_CASE(version_number)
{
BOOST_CHECK_EQUAL(OMNICORE_VERSION, 40000099);
BOOST_CHECK_EQUAL(OMNICORE_VERSION, 50000000);
}

BOOST_AUTO_TEST_CASE(config_package_version)
{
// the package version is used in the file names:
BOOST_CHECK_EQUAL(PACKAGE_VERSION, "0.4.0");
BOOST_CHECK_EQUAL(PACKAGE_VERSION, "0.5.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,13 +15,13 @@
#define OMNICORE_VERSION_MAJOR 0

// Increase with every non-consensus affecting feature
#define OMNICORE_VERSION_MINOR 4
#define OMNICORE_VERSION_MINOR 5

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

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

#endif // HAVE_CONFIG_H

Expand Down

0 comments on commit 1bbbfc9

Please sign in to comment.