From e1d4f240f4706b929d264bda8b733f58575a9000 Mon Sep 17 00:00:00 2001 From: Dan Wilson Date: Thu, 9 Sep 2021 12:54:41 +0100 Subject: [PATCH] (maint)-release 2.3.1 --- CHANGELOG.md | 8 ++++++++ version/version.go | 2 +- version/version_test.go | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64c3f63e..da53600d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [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:** + +- 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)) + ## [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) diff --git a/version/version.go b/version/version.go index f17fab1e..317fe888 100644 --- a/version/version.go +++ b/version/version.go @@ -27,7 +27,7 @@ var ( // VersionMinor is for functionality in a backwards-compatible manner. VersionMinor int64 = 3 // VersionPatch is for backwards-compatible bug fixes. - VersionPatch int64 = 0 + VersionPatch int64 = 1 // 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 b4b15f68..9b395696 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.0"; got != want { + if got, want := Version.String(), "2.3.1"; got != want { t.Errorf("Want version %s, got %s", want, got) } }