bump version [CI SKIP]

This commit is contained in:
Brad Rydzewski 2019-03-19 16:17:40 -07:00
parent fabd2670f5
commit 316217a81d
3 changed files with 3 additions and 3 deletions

View file

@ -198,7 +198,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.6"`
Image string `envconfig:"DRONE_RUNNER_IMAGE" default:"drone/controller:1.0.0"`
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.6"
VersionPre = ""
// 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.6"; got != want {
if got, want := Version.String(), "1.0.0"; got != want {
t.Errorf("Want version %s, got %s", want, got)
}
}