Skip to content

Commit 3b562bb

Browse files
committed
move latest release to 4.17
Signed-off-by: Adam D. Cornett <[email protected]>
1 parent 755831a commit 3b562bb

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

internal/bundle/bundle.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,10 @@ var ocpToKubeVersion = map[string]string{
3131
"4.15": "1.28",
3232
"4.16": "1.29",
3333
"4.17": "1.30",
34+
"4.18": "1.31",
3435
}
3536

36-
const latestReleasedVersion = "4.16"
37+
const latestReleasedVersion = "4.17"
3738

3839
func Validate(ctx context.Context, imagePath string) (*Report, error) {
3940
logger := logr.FromContextOrDiscard(ctx)

internal/bundle/bundle_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ var _ = Describe("BundleValidateCheck", func() {
110110
Entry(">= 4.15", "v4.15", latestReleasedVersion, true),
111111
Entry(">= 4.16, which is more than released", "v4.16", latestReleasedVersion, true),
112112
Entry(">= 4.17, which is more than released", "v4.17", "4.17", true),
113+
Entry(">= 4.18, which is more than released", "v4.18", "4.18", true),
113114
Entry("begins = with error", "=foo", "", false),
114115
Entry("bare version with error", "vfoo", "", false),
115116
Entry("range with error", "v4.6-vfoo", "", false),

0 commit comments

Comments
 (0)