prepare 1.4.0 release [ci skip]

This commit is contained in:
Brad Rydzewski 2019-09-12 22:45:42 -07:00
parent 563b837b2d
commit 09f8c402d3
3 changed files with 6 additions and 3 deletions

View file

@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
### Added
- upgrade to Go 1.13 to resolve arm segfault, by [@KN4CK3R](https://github.com/KN4CK3R). [#2823](https://github.com/drone/drone/issues/2823).
- configure default visibility, by [@JordanSussman](https://github.com/JordanSussman). [#2824](https://github.com/drone/drone/issues/2824).
- configure default trusted flag, by [@vyckou](https://github.com/vyckou).
- support for validation plugins, by [@bradrydzewski](https://github.com/bradrydzewski). [#2266](https://github.com/drone/drone/issues/2266).
- support for conversion plugins, by [@bradrydzewski](https://github.com/bradrydzewski).
- support for cron event type, by [@bradrydzewski](https://github.com/bradrydzewski). [#2705](https://github.com/drone/drone/issues/2705).

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 = 3
VersionMinor int64 = 4
// 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.3.1"; got != want {
if got, want := Version.String(), "1.4.0"; got != want {
t.Errorf("Want version %s, got %s", want, got)
}
}