From 316217a81d278085b5882bdf7fb12f630d6395e7 Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Tue, 19 Mar 2019 16:17:40 -0700 Subject: [PATCH] bump version [CI SKIP] --- cmd/drone-server/config/config.go | 2 +- version/version.go | 2 +- version/version_test.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/drone-server/config/config.go b/cmd/drone-server/config/config.go index 0f37b5e2..7e68b7b1 100644 --- a/cmd/drone-server/config/config.go +++ b/cmd/drone-server/config/config.go @@ -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"` diff --git a/version/version.go b/version/version.go index 13f4e9ab..986d9420 100644 --- a/version/version.go +++ b/version/version.go @@ -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 ) diff --git a/version/version_test.go b/version/version_test.go index 5afffee5..2ab6533f 100644 --- a/version/version_test.go +++ b/version/version_test.go @@ -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) } }