Skip to content

Commit

Permalink
Update version to 0.9.99 to indicate development
Browse files Browse the repository at this point in the history
  • Loading branch information
dexX7 committed Nov 30, 2020
1 parent ab0cc4d commit 4dada78
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 13 deletions.
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
# EXPERIMENTAL 0.20 BRANCH
# DO NOT USE IN PRODUCTION

Omni Core (beta) integration/staging tree
=========================================

[![Build Status](https://travis-ci.org/OmniLayer/omnicore.svg?branch=omnicore-0.0.10)](https://travis-ci.org/OmniLayer/omnicore)
[![Build Status](https://travis-ci.org/OmniLayer/omnicore.svg?branch=develop)](https://travis-ci.org/OmniLayer/omnicore)

What is the Omni Layer
----------------------
Expand All @@ -15,7 +12,7 @@ http://www.omnilayer.org
What is Omni Core
-----------------

Omni Core is a fast, portable Omni Layer implementation that is based off the Bitcoin Core codebase (currently 0.13.2). This implementation requires no external dependencies extraneous to Bitcoin Core, and is native to the Bitcoin network just like other Bitcoin nodes. It currently supports a wallet mode and is seamlessly available on three platforms: Windows, Linux and Mac OS. Omni Layer extensions are exposed via the JSON-RPC interface. Development has been consolidated on the Omni Core product, and it is the reference client for the Omni Layer.
Omni Core is a fast, portable Omni Layer implementation that is based off the Bitcoin Core codebase (currently 0.20.1). This implementation requires no external dependencies extraneous to Bitcoin Core, and is native to the Bitcoin network just like other Bitcoin nodes. It currently supports a wallet mode and is seamlessly available on three platforms: Windows, Linux and Mac OS. Omni Layer extensions are exposed via the JSON-RPC interface. Development has been consolidated on the Omni Core product, and it is the reference client for the Omni Layer.

Disclaimer, warning
-------------------
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ define(_CLIENT_VERSION_MINOR, 20)
define(_CLIENT_VERSION_REVISION, 1)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_RC, 0)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_CLIENT_VERSION_IS_RELEASE, false)
define(_COPYRIGHT_YEAR, 2020)
define(_COPYRIGHT_HOLDERS,[The %s developers])
define(_COPYRIGHT_HOLDERS_SUBSTITUTION,[[Bitcoin Core and Omni Core]])
define(_OMNICORE_VERSION_MAJOR, 0)
define(_OMNICORE_VERSION_MINOR, 9)
define(_OMNICORE_VERSION_PATCH, 0)
define(_OMNICORE_VERSION_PATCH, 99)
define(_OMNICORE_VERSION_BUILD, 0)
define(_OMNICORE_VERSION_RC, 0)
AC_INIT([Omni Core],m4_join([.], _OMNICORE_VERSION_MAJOR, _OMNICORE_VERSION_MINOR, _OMNICORE_VERSION_PATCH, m4_if(_OMNICORE_VERSION_BUILD, [0], [], _OMNICORE_VERSION_BUILD))m4_if(_OMNICORE_VERSION_RC, [0], [], [rc]_OMNICORE_VERSION_RC),[https://github.com/OmniLayer/omnicore/issues],[omnicore],[http://www.omnilayer.org/])
Expand Down
4 changes: 2 additions & 2 deletions src/omnicore/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Omni Core (beta) integration/staging tree
=========================================

[![Build Status](https://travis-ci.org/OmniLayer/omnicore.svg?branch=omnicore-0.0.10)](https://travis-ci.org/OmniLayer/omnicore)
[![Build Status](https://travis-ci.org/OmniLayer/omnicore.svg?branch=develop)](https://travis-ci.org/OmniLayer/omnicore)

What is the Omni Layer
----------------------
Expand All @@ -12,7 +12,7 @@ http://www.omnilayer.org
What is Omni Core
-----------------

Omni Core is a fast, portable Omni Layer implementation that is based off the Bitcoin Core codebase (currently 0.13.2). This implementation requires no external dependencies extraneous to Bitcoin Core, and is native to the Bitcoin network just like other Bitcoin nodes. It currently supports a wallet mode and is seamlessly available on three platforms: Windows, Linux and Mac OS. Omni Layer extensions are exposed via the UI and the JSON-RPC interface. Development has been consolidated on the Omni Core product, and it is the reference client for the Omni Layer.
Omni Core is a fast, portable Omni Layer implementation that is based off the Bitcoin Core codebase (currently 0.20.1). This implementation requires no external dependencies extraneous to Bitcoin Core, and is native to the Bitcoin network just like other Bitcoin nodes. It currently supports a wallet mode and is seamlessly available on three platforms: Windows, Linux and Mac OS. Omni Layer extensions are exposed via the UI and the JSON-RPC interface. Development has been consolidated on the Omni Core product, and it is the reference client for the Omni Layer.

Disclaimer, warning
-------------------
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.9.0");
BOOST_CHECK_EQUAL(OmniCoreVersion(), "0.9.99");
}

BOOST_AUTO_TEST_CASE(version_number)
{
BOOST_CHECK_EQUAL(OMNICORE_VERSION, 90000000);
BOOST_CHECK_EQUAL(OMNICORE_VERSION, 90099000);
}

BOOST_AUTO_TEST_CASE(config_package_version)
{
// the package version is used in the file names:
BOOST_CHECK_EQUAL(PACKAGE_VERSION, "0.9.0");
BOOST_CHECK_EQUAL(PACKAGE_VERSION, "0.9.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 9

// 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 4dada78

Please sign in to comment.