drone version bump (#3504)

This commit is contained in:
ShobhitSingh11 2024-04-29 17:52:05 +05:30 committed by GitHub
parent 94bcb869dc
commit cc2f033569
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 = 22
VersionMinor int64 = 23
// 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.22.0"; got != want {
if got, want := Version.String(), "2.23.0"; got != want {
t.Errorf("Want version %s, got %s", want, got)
}
}