Skip to content

Commit

Permalink
Bump version to Omni Core 0.0.11.1-rel
Browse files Browse the repository at this point in the history
  • Loading branch information
dexX7 committed Jul 30, 2016
1 parent 59a5cc0 commit 35fcb32
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 @@ -9,8 +9,8 @@ define(_COPYRIGHT_YEAR, 2016)
define(_OMNICORE_VERSION_MILESTONE, 0)
define(_OMNICORE_VERSION_MAJOR, 0)
define(_OMNICORE_VERSION_MINOR, 11)
define(_OMNICORE_VERSION_PATCH, 0)
define(_OMNICORE_VERSION_BUILD, 1)
define(_OMNICORE_VERSION_PATCH, 1)
define(_OMNICORE_VERSION_BUILD, 0)
define(_OMNICORE_VERSION_STATUS, rel)
AC_INIT([Omni Core],[_OMNICORE_VERSION_MILESTONE._OMNICORE_VERSION_MAJOR._OMNICORE_VERSION_MINOR._OMNICORE_VERSION_PATCH-_OMNICORE_VERSION_STATUS],[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 @@ -22,18 +22,18 @@ BOOST_AUTO_TEST_CASE(version_comparison)

BOOST_AUTO_TEST_CASE(version_string)
{
BOOST_CHECK_EQUAL(OmniCoreVersion(), "0.0.11-rel");
BOOST_CHECK_EQUAL(OmniCoreVersion(), "0.0.11.1-rel");
}

BOOST_AUTO_TEST_CASE(version_number)
{
BOOST_CHECK_EQUAL(OMNICORE_VERSION, 1100001);
BOOST_CHECK_EQUAL(OMNICORE_VERSION, 1100100);
}

BOOST_AUTO_TEST_CASE(config_package_version)
{
// the package version is used in the file names:
BOOST_CHECK_EQUAL(PACKAGE_VERSION, "0.0.11.0-rel");
BOOST_CHECK_EQUAL(PACKAGE_VERSION, "0.0.11.1-rel");
}


Expand Down
4 changes: 2 additions & 2 deletions src/omnicore/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
#define OMNICORE_VERSION_MINOR 11

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

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

// Use "dev" for development versions, switch to "rc" for release candidates
#define OMNICORE_VERSION_STATUS rel
Expand Down

0 comments on commit 35fcb32

Please sign in to comment.