bump version to rc.5

This commit is contained in:
Brad Rydzewski 2017-09-12 09:44:20 -07:00
parent 8795cf039f
commit b034068ec4
2 changed files with 3 additions and 3 deletions

View file

@ -80,7 +80,7 @@ pipeline:
image: plugins/docker
repo: drone/drone
secrets: [ docker_username, docker_password ]
tag: [ 0.8, 0.8.0, 0.8.0-rc.4 ]
tag: [ 0.8, 0.8.0, 0.8.0-rc.5 ]
when:
event: tag
@ -89,7 +89,7 @@ pipeline:
repo: drone/agent
dockerfile: Dockerfile.agent
secrets: [ docker_username, docker_password ]
tag: [ 0.8, 0.8.0, 0.8.0-rc.4 ]
tag: [ 0.8, 0.8.0, 0.8.0-rc.5 ]
when:
event: tag

View file

@ -10,7 +10,7 @@ var (
// VersionPatch is for backwards-compatible bug fixes.
VersionPatch int64 = 0
// VersionPre indicates prerelease.
VersionPre string = "rc.4"
VersionPre string = "rc.5"
// VersionDev indicates development branch. Releases will be empty string.
VersionDev string
)