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
OP (oppenheimer) 2024-11-21 19:55:03 +05:30 committed by GitHub
parent 9b951983de
commit c32df38e62
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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 = 24
VersionMinor int64 = 25
// VersionPatch is for backwards-compatible bug fixes.
VersionPatch int64 = 0
// VersionPre indicates prerelease.

View File

@ -10,7 +10,7 @@ package version
import "testing"
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)
}
}