Skip to content

Commit

Permalink
(maint) 2.20.0 release prep
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot-ci committed Aug 21, 2023
1 parent e47ea55 commit 0322e25
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,17 @@
# Changelog

## [v2.20.0](https://github.com/harness/drone/tree/v2.20.0) (2023-08-21)

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

**Implemented enhancements:**

- + sync gitea redirecturl config from gitee for customize login redire… [\#3319](https://github.com/harness/drone/pull/3319) ([fireinice](https://github.com/fireinice))

**Fixed bugs:**

- \(CI-8780\) set approved stages to waiting, if they have stage depende… [\#3355](https://github.com/harness/drone/pull/3355) ([tphoney](https://github.com/tphoney))

## [v2.19.0](https://github.com/harness/drone/tree/v2.19.0) (2023-08-15)

[Full Changelog](https://github.com/harness/drone/compare/scheduler_experiment...v2.19.0)
Expand All @@ -17,6 +29,7 @@

**Merged pull requests:**

- \(maint\) prep for v2.19.0 [\#3352](https://github.com/harness/drone/pull/3352) ([tphoney](https://github.com/tphoney))
- remove repetitive words [\#3342](https://github.com/harness/drone/pull/3342) ([cuishuang](https://github.com/cuishuang))
- Revert "fix scheduler queue deadlock" [\#3331](https://github.com/harness/drone/pull/3331) ([tphoney](https://github.com/tphoney))

Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Expand Up @@ -25,7 +25,7 @@ var (
// VersionMajor is for an API incompatible changes.
VersionMajor int64 = 2
// VersionMinor is for functionality in a backwards-compatible manner.
VersionMinor int64 = 19
VersionMinor int64 = 20
// VersionPatch is for backwards-compatible bug fixes.
VersionPatch int64 = 0
// VersionPre indicates prerelease.
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.19.0"; got != want {
if got, want := Version.String(), "2.20.0"; got != want {
t.Errorf("Want version %s, got %s", want, got)
}
}

0 comments on commit 0322e25

Please sign in to comment.