bump version [ci skip]

This commit is contained in:
Brad Rydzewski 2017-07-20 14:32:44 -04:00
parent eaa6d41699
commit e7c27f11c9
2 changed files with 3 additions and 3 deletions

View file

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

View file

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