From 835ea43399a520e923c65ea5d713108935b4b120 Mon Sep 17 00:00:00 2001 From: Benjamin Bollen <ben@monax.io> Date: Wed, 1 Mar 2017 14:59:06 +0100 Subject: [PATCH] version: move patch number to v0.16.1 --- manager/eris-mint/version.go | 2 +- version/version.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manager/eris-mint/version.go b/manager/eris-mint/version.go index 734e5cea..ac4b5855 100644 --- a/manager/eris-mint/version.go +++ b/manager/eris-mint/version.go @@ -28,7 +28,7 @@ const ( // Minor version component of the current release erisMintVersionMinor = 16 // Patch version component of the current release - erisMintVersionPatch = 0 + erisMintVersionPatch = 1 ) // Define the compatible consensus engines this application manager diff --git a/version/version.go b/version/version.go index 103c787d..20025990 100644 --- a/version/version.go +++ b/version/version.go @@ -32,7 +32,7 @@ const ( // Minor version component of the current release erisVersionMinor = 16 // Patch version component of the current release - erisVersionPatch = 0 + erisVersionPatch = 1 ) var erisVersion *VersionIdentifier @@ -127,4 +127,4 @@ func (version *VersionIdentifier) MatchesMinorVersion( // IMPORTANT: Eris-DB version must be on the last line of this file for // the deployment script tests/build_tool.sh to pick up the right label. -const VERSION = "0.16.0" +const VERSION = "0.16.1" -- GitLab