bump version [ci skip]

This commit is contained in:
Brad Rydzewski 2019-03-05 16:04:10 -08:00
parent 438bcbc792
commit e9a74feda8
3 changed files with 3 additions and 3 deletions

View file

@ -192,7 +192,7 @@ type (
// Runner provides the runner configuration.
Runner struct {
Local bool `envconfig:"DRONE_RUNNER_LOCAL"`
Image string `envconfig:"DRONE_RUNNER_IMAGE" default:"drone/controller:1.0.0-rc.5"`
Image string `envconfig:"DRONE_RUNNER_IMAGE" default:"drone/controller:1.0.0-rc.6"`
Platform string `envconfig:"DRONE_RUNNER_PLATFORM" default:"linux/amd64"`
OS string `envconfig:"DRONE_RUNNER_OS"`
Arch string `envconfig:"DRONE_RUNNER_ARCH"`

View file

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

View file

@ -9,7 +9,7 @@ package version
import "testing"
func TestVersion(t *testing.T) {
if got, want := Version.String(), "1.0.0-rc.5"; got != want {
if got, want := Version.String(), "1.0.0-rc.6"; got != want {
t.Errorf("Want version %s, got %s", want, got)
}
}