update for version 1.1.0 [ci skip]

This commit is contained in:
Brad Rydzewski 2019-04-23 07:41:40 -07:00
parent 223536a93f
commit 574c24ade8
3 changed files with 7 additions and 3 deletions

View file

@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
### Added
## [1.1.0] - 2019-04-23
### Added
- specify a user for the pipeline step, by [@bradrydzewski](https://github.com/bradrydzewski). [#2651](https://github.com/drone/drone/issues/2651).
- support for Gitea oauth2, by [@techknowlogick](https://github.com/techknowlogick). [#2622](https://github.com/drone/drone/pull/2622).
- ping the docker daemon before starting the agent, by [@bradrydzewski](https://github.com/bradrydzewski). [#2495](https://github.com/drone/drone/issues/2495).
@ -17,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- support for per-organization secrets, by [@bradrydzewski](https://github.com/bradrydzewski).
- include system metadata in global webhooks, by [@bradrydzewski](https://github.com/bradrydzewski).
- ability to customize cookie secure flag, by [@bradrydzewski](https://github.com/bradrydzewski).
- support for gitea oauth by [@techknowlogick](https://github.com/techknowlogick).
- update drone-yaml from version 1.0.6 to 1.0.8.
- update drone-runtime from version 1.0.4 to 1.0.6.
- update go-scm from version 1.0.3 to 1.0.4.

View file

@ -25,9 +25,9 @@ var (
// VersionMajor is for an API incompatible changes.
VersionMajor int64 = 1
// VersionMinor is for functionality in a backwards-compatible manner.
VersionMinor int64
VersionMinor int64 = 1
// VersionPatch is for backwards-compatible bug fixes.
VersionPatch int64 = 1
VersionPatch int64
// VersionPre indicates prerelease.
VersionPre = ""
// VersionDev indicates development branch. Releases will be empty string.

View file

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