Skip to content

Commit

Permalink
Merge bitcoin#486: Update version to 0.2.99 to indicate development
Browse files Browse the repository at this point in the history
266827a Update version to 0.2.99 to indicate development (dexX7)
  • Loading branch information
dexX7 committed Jul 13, 2017
2 parents a04f68c + 266827a commit 08a9d51
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 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, true)
define(_COPYRIGHT_YEAR, 2016)
define(_CLIENT_VERSION_IS_RELEASE, false)
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, 0)
define(_OMNICORE_VERSION_PATCH, 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])
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.0");
BOOST_CHECK_EQUAL(OmniCoreVersion(), "0.2.99");
}

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

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


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

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

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

0 comments on commit 08a9d51

Please sign in to comment.