Skip to content

Commit

Permalink
Merge pull request #3214 from tphoney/prep_v2.12.0
Browse files Browse the repository at this point in the history
release prep v2.12.0
  • Loading branch information
TP Honey committed May 16, 2022
2 parents 724bd35 + aa18fc5 commit 95e091f
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github_changelog_generator
@@ -1,2 +1,3 @@
since-tag=v2.0.4
issues=false

23 changes: 23 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,24 @@
# Changelog

## [v2.12.0](https://github.com/harness/drone/tree/v2.12.0) (2022-05-13)

[Full Changelog](https://github.com/harness/drone/compare/v2.11.1...v2.12.0)

**Implemented enhancements:**

- bump SCM version to v1.21.1 [\#3204](https://github.com/harness/drone/pull/3204) ([d1wilko](https://github.com/d1wilko))
- bump ui version [\#3202](https://github.com/harness/drone/pull/3202) ([d1wilko](https://github.com/d1wilko))

**Fixed bugs:**

- \(fix\) update drone ui to 2.8.2 [\#3211](https://github.com/harness/drone/pull/3211) ([tphoney](https://github.com/tphoney))
- \(dron-267\) correctly set parent for promotion retry [\#3210](https://github.com/harness/drone/pull/3210) ([tphoney](https://github.com/tphoney))

**Merged pull requests:**

- fixing URL [\#3208](https://github.com/harness/drone/pull/3208) ([dnielsen](https://github.com/dnielsen))
- update community information with updated links [\#3199](https://github.com/harness/drone/pull/3199) ([mrsantons](https://github.com/mrsantons))

## [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)
Expand All @@ -8,6 +27,10 @@

- ignore nil repos in list and add better debugging [\#3196](https://github.com/harness/drone/pull/3196) ([d1wilko](https://github.com/d1wilko))

**Merged pull requests:**

- \(maint\) release prep for 2.11.1 [\#3197](https://github.com/harness/drone/pull/3197) ([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)
Expand Down
4 changes: 2 additions & 2 deletions version/version.go
Expand Up @@ -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 = 11
VersionMinor int64 = 12
// 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.
Expand Down
2 changes: 1 addition & 1 deletion version/version_test.go
Expand Up @@ -10,7 +10,7 @@ package version
import "testing"

func TestVersion(t *testing.T) {
if got, want := Version.String(), "2.11.1"; got != want {
if got, want := Version.String(), "2.12.0"; got != want {
t.Errorf("Want version %s, got %s", want, got)
}
}

0 comments on commit 95e091f

Please sign in to comment.