mirror of
https://github.com/harness/drone.git
synced 2025-05-04 03:40:09 +08:00
(maint) 2.20.0 release prep
This commit is contained in:
parent
e47ea55025
commit
0322e25117
13
CHANGELOG.md
13
CHANGELOG.md
@ -1,5 +1,17 @@
|
|||||||
# Changelog
|
# 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)
|
## [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)
|
[Full Changelog](https://github.com/harness/drone/compare/scheduler_experiment...v2.19.0)
|
||||||
@ -17,6 +29,7 @@
|
|||||||
|
|
||||||
**Merged pull requests:**
|
**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))
|
- 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))
|
- Revert "fix scheduler queue deadlock" [\#3331](https://github.com/harness/drone/pull/3331) ([tphoney](https://github.com/tphoney))
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ var (
|
|||||||
// VersionMajor is for an API incompatible changes.
|
// VersionMajor is for an API incompatible changes.
|
||||||
VersionMajor int64 = 2
|
VersionMajor int64 = 2
|
||||||
// VersionMinor is for functionality in a backwards-compatible manner.
|
// VersionMinor is for functionality in a backwards-compatible manner.
|
||||||
VersionMinor int64 = 19
|
VersionMinor int64 = 20
|
||||||
// VersionPatch is for backwards-compatible bug fixes.
|
// VersionPatch is for backwards-compatible bug fixes.
|
||||||
VersionPatch int64 = 0
|
VersionPatch int64 = 0
|
||||||
// VersionPre indicates prerelease.
|
// VersionPre indicates prerelease.
|
||||||
|
@ -10,7 +10,7 @@ package version
|
|||||||
import "testing"
|
import "testing"
|
||||||
|
|
||||||
func TestVersion(t *testing.T) {
|
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)
|
t.Errorf("Want version %s, got %s", want, got)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user