From 039e4d1802abe13cebe7ee2465a6865c3ebf4e28 Mon Sep 17 00:00:00 2001 From: Dan Wilson Date: Thu, 23 Sep 2021 09:54:50 +0100 Subject: [PATCH] release v2.4.0 --- CHANGELOG.md | 27 ++++++++++++++++++++++++--- version/version.go | 4 ++-- version/version_test.go | 2 +- 3 files changed, 27 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4c754f1c..2bd9ad180 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,36 @@ # Changelog +## [v2.4.0](https://github.com/drone/drone/tree/v2.4.0) (2021-09-23) + +[Full Changelog](https://github.com/drone/drone/compare/v2.3.1...v2.4.0) + +**Implemented enhancements:** + +- bump ui version to v2.3.0 [\#3146](https://github.com/drone/drone/pull/3146) ([d1wilko](https://github.com/d1wilko)) +- verify if the application is buildable [\#3144](https://github.com/drone/drone/pull/3144) ([marko-gacesa](https://github.com/marko-gacesa)) + +**Fixed bugs:** + +- fixes build issue with bitbucket cloud [\#3147](https://github.com/drone/drone/pull/3147) ([eoinmcafee00](https://github.com/eoinmcafee00)) +- Fix stepLimit param in Starlark and Template OSS code [\#3141](https://github.com/drone/drone/pull/3141) ([phil-davis](https://github.com/phil-davis)) +- fix a broken link in readme [\#3140](https://github.com/drone/drone/pull/3140) ([empire](https://github.com/empire)) + +**Merged pull requests:** + +- Allow jsonnet imports in pipeline configuration [\#3105](https://github.com/drone/drone/pull/3105) ([hhamalai](https://github.com/hhamalai)) + ## [v2.3.1](https://github.com/drone/drone/tree/v2.3.1) (2021-09-09) [Full Changelog](https://github.com/drone/drone/compare/v2.3.0...v2.3.1) -**Merged pull requests:** +**Implemented enhancements:** - bump ui to v2.2.1 - https://github.com/drone/drone-ui/blob/main/CHANGELOG.md [\#3138](https://github.com/drone/drone/pull/3138) ([d1wilko](https://github.com/d1wilko)) +**Merged pull requests:** + +- \(maint\)-release 2.3.1 [\#3139](https://github.com/drone/drone/pull/3139) ([d1wilko](https://github.com/d1wilko)) + ## [v2.3.0](https://github.com/drone/drone/tree/v2.3.0) (2021-09-09) [Full Changelog](https://github.com/drone/drone/compare/v2.2.0...v2.3.0) @@ -97,8 +120,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Unreleased -### Added -- Allow jsonnet imports in pipeline configuration ## [2.0.4] ### Fixed diff --git a/version/version.go b/version/version.go index 317fe888a..839448dc5 100644 --- a/version/version.go +++ b/version/version.go @@ -25,9 +25,9 @@ var ( // VersionMajor is for an API incompatible changes. VersionMajor int64 = 2 // 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 = 0 // 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 9b3956967..3a62a8bb9 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(), "2.3.1"; got != want { + if got, want := Version.String(), "2.4.0"; got != want { t.Errorf("Want version %s, got %s", want, got) } }