From 8ff7cdc6ecb17ba98b160ece42f1c21586700bf6 Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Sun, 3 Dec 2017 11:08:11 -0800 Subject: [PATCH] bump minor version --- .drone.yml | 4 ++-- version/version.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 6511abb33..bb3ab4c6c 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.2 ] + tag: [ 0.8, 0.8.3 ] when: event: tag @@ -127,7 +127,7 @@ pipeline: repo: drone/agent dockerfile: Dockerfile.agent secrets: [ docker_username, docker_password ] - tag: [ 0.8, 0.8.2 ] + tag: [ 0.8, 0.8.3 ] when: event: tag diff --git a/version/version.go b/version/version.go index d5a2ef11b..f329dab17 100644 --- a/version/version.go +++ b/version/version.go @@ -8,7 +8,7 @@ var ( // VersionMinor is for functionality in a backwards-compatible manner. VersionMinor int64 = 8 // VersionPatch is for backwards-compatible bug fixes. - VersionPatch int64 = 2 + VersionPatch int64 = 3 // VersionPre indicates prerelease. VersionPre string // VersionDev indicates development branch. Releases will be empty string.