mirror of https://github.com/harness/drone.git
Drone Version Bump from 2.24.0 to 2.25.0 (#3592)
Security vulns fixed as part of PR #3577. Releasing new minor release 2.25.0.pull/3598/head v2.25.0
parent
9b951983de
commit
c32df38e62
|
@ -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 = 24
|
VersionMinor int64 = 25
|
||||||
// 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.24.0"; got != want {
|
if got, want := Version.String(), "2.25.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