Skip to content

Commit

Permalink
Merge pull request #411
Browse files Browse the repository at this point in the history
c64d674 Update release notes for 0.0.11.1-rel (dexX7)
35fcb32 Bump version to Omni Core 0.0.11.1-rel (dexX7)
  • Loading branch information
dexX7 committed Jul 31, 2016
2 parents 9e860fa + c64d674 commit 9bc5c8c
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 11 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
13 changes: 9 additions & 4 deletions src/omnicore/doc/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
Omni Core v0.0.11
=================
Omni Core v0.0.11.1
===================

v0.0.11.1 is a bugfix release which resolves a critical bug in the RPC API whereby under certain circumstances retrieving data about a sell offer may trigger a failsafe and cause the automatic shutdown of the client.

v0.0.11 is a major release and consensus critical in terms of the Omni Layer protocol rules. An upgrade is mandatory, and highly recommended. Prior releases will not be compatible with new behavior in this release.
This version is built on top of v0.0.11, which is a major release and consensus critical in terms of the Omni Layer protocol rules. An upgrade is mandatory, and highly recommended. Prior releases will not be compatible with new behavior in this release.

Please report bugs using the issue tracker on GitHub:

Expand All @@ -10,7 +12,7 @@ Please report bugs using the issue tracker on GitHub:
Table of contents
=================

- [Omni Core v0.0.11](#omni-core-v0011)
- [Omni Core v0.0.11.1](#omni-core-v00111)
- [Upgrading and downgrading](#upgrading-and-downgrading)
- [How to upgrade](#how-to-upgrade)
- [Downgrading](#downgrading)
Expand Down Expand Up @@ -155,6 +157,7 @@ Various smaller improvements were added Omni Core 0.0.11, such as:
- Fix Travis CI builds without cache
- Fix syntax error in walletdb key parser
- Fix too-aggressive database clean in block reorganization events
- Fix issues related to `omni_gettransaction` and `getactivedexsells`

Change log
==========
Expand Down Expand Up @@ -204,6 +207,8 @@ The following list includes relevant pull requests merged into this release:
- #403 Add consensus hash for block 420,000
- #405 Use uint256 when calculating desired BTC for DEx 1
- #404 Bump version to Omni Core 0.0.11-rel
- #409 Protect uint256 plain integer math
- #411 Bump version to Omni Core 0.0.11.1-rel
```

Credits
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 9bc5c8c

Please sign in to comment.