From 81103a98208b0bfc76be5b07194f359fbc80183b Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Thu, 29 Mar 2018 10:40:54 -0700 Subject: [PATCH] bump target version number to 0.8.5 --- .drone.yml | 4 ++-- version/version.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index bac57bfa..d372a27e 100644 --- a/.drone.yml +++ b/.drone.yml @@ -118,7 +118,7 @@ pipeline: image: plugins/docker repo: drone/drone secrets: [ docker_username, docker_password ] - tag: [ 0.8, 0.8.4 ] + tag: [ 0.8, 0.8.5 ] when: event: tag @@ -127,7 +127,7 @@ pipeline: repo: drone/agent dockerfile: Dockerfile.agent secrets: [ docker_username, docker_password ] - tag: [ 0.8, 0.8.4 ] + tag: [ 0.8, 0.8.5 ] when: event: tag diff --git a/version/version.go b/version/version.go index bda02bf5..4be904ee 100644 --- a/version/version.go +++ b/version/version.go @@ -22,7 +22,7 @@ var ( // VersionMinor is for functionality in a backwards-compatible manner. VersionMinor int64 = 8 // VersionPatch is for backwards-compatible bug fixes. - VersionPatch int64 = 4 + VersionPatch int64 = 5 // VersionPre indicates prerelease. VersionPre string // VersionDev indicates development branch. Releases will be empty string.