diff --git a/CHANGELOG.md b/CHANGELOG.md index c908e426d..a41c05c82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [v2.11.1](https://github.com/harness/drone/tree/v2.11.1) (2022-03-15) + +[Full Changelog](https://github.com/harness/drone/compare/v2.11.0...v2.11.1) + +**Fixed bugs:** + +- ignore nil repos in list and add better debugging [\#3196](https://github.com/harness/drone/pull/3196) ([d1wilko](https://github.com/d1wilko)) + ## [v2.11.0](https://github.com/harness/drone/tree/v2.11.0) (2022-03-08) [Full Changelog](https://github.com/harness/drone/compare/v2.10.0...v2.11.0) @@ -8,6 +16,10 @@ - bump UI and SCM versions [\#3193](https://github.com/harness/drone/pull/3193) ([d1wilko](https://github.com/d1wilko)) +**Merged pull requests:** + +- \(maint\) release prep for 2.11.0 [\#3194](https://github.com/harness/drone/pull/3194) ([d1wilko](https://github.com/d1wilko)) + ## [v2.10.0](https://github.com/harness/drone/tree/v2.10.0) (2022-03-03) [Full Changelog](https://github.com/harness/drone/compare/v2.9.1...v2.10.0) diff --git a/version/version.go b/version/version.go index 62c4a83df..cf9ef42b3 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 = 11 // 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 8c6d26d9f..3e5e81a8d 100644 --- a/version/version_test.go +++ b/version/version_test.go @@ -10,7 +10,7 @@ package version import "testing" func TestVersion(t *testing.T) { - if got, want := Version.String(), "2.11.0"; got != want { + if got, want := Version.String(), "2.11.1"; got != want { t.Errorf("Want version %s, got %s", want, got) } }