Skip to content
Snippets Groups Projects
Commit f92ef585 authored by Silas Davis's avatar Silas Davis Committed by GitHub
Browse files

Merge pull request #552 from benjaminbollen/master

Correct for tagged releases (breakage per name change)
parents 1ac25984 d974c07f
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,7 @@ const ( ...@@ -28,7 +28,7 @@ const (
// Minor version component of the current release // Minor version component of the current release
erisMintVersionMinor = 16 erisMintVersionMinor = 16
// Patch version component of the current release // Patch version component of the current release
erisMintVersionPatch = 2 erisMintVersionPatch = 1
) )
// Define the compatible consensus engines this application manager // Define the compatible consensus engines this application manager
......
...@@ -23,7 +23,7 @@ IMAGE=quay.io/eris/db ...@@ -23,7 +23,7 @@ IMAGE=quay.io/eris/db
set -e set -e
if [ "$JENKINS_URL" ] || [ "$CIRCLE_BRANCH" ] if [ "$JENKINS_URL" ] || [ "$CIRCLE_BRANCH" ] || [ "$CIRCLE_TAG" ]
then then
REPO=`pwd` REPO=`pwd`
CI="true" CI="true"
......
...@@ -32,7 +32,7 @@ const ( ...@@ -32,7 +32,7 @@ const (
// Minor version component of the current release // Minor version component of the current release
erisVersionMinor = 16 erisVersionMinor = 16
// Patch version component of the current release // Patch version component of the current release
erisVersionPatch = 2 erisVersionPatch = 1
) )
var erisVersion *VersionIdentifier var erisVersion *VersionIdentifier
...@@ -127,4 +127,4 @@ func (version *VersionIdentifier) MatchesMinorVersion( ...@@ -127,4 +127,4 @@ func (version *VersionIdentifier) MatchesMinorVersion(
// IMPORTANT: Eris-DB version must be on the last line of this file for // 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. // the deployment script tests/build_tool.sh to pick up the right label.
const VERSION = "0.16.2" const VERSION = "0.16.1"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment