diff --git a/CHANGELOG.md b/CHANGELOG.md index 78714f54..4e90dca8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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). diff --git a/version/version.go b/version/version.go index 18a87b49..d936b400 100644 --- a/version/version.go +++ b/version/version.go @@ -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. diff --git a/version/version_test.go b/version/version_test.go index dd742dd6..3d1f9ab5 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.3.1"; got != want { + if got, want := Version.String(), "1.4.0"; got != want { t.Errorf("Want version %s, got %s", want, got) } }