We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f10aa61 commit 1f739f6Copy full SHA for 1f739f6
pkg/integration/components/test.go
@@ -59,10 +59,12 @@ type GitVersionRestriction struct {
59
includes []string
60
}
61
62
+// Verifies the version is at least the given version (inclusive)
63
func From(version string) GitVersionRestriction {
64
return GitVersionRestriction{from: version}
65
66
67
+// Verifies the version is before the given version (exclusive)
68
func Before(version string) GitVersionRestriction {
69
return GitVersionRestriction{before: version}
70
0 commit comments