File tree Expand file tree Collapse file tree 1 file changed +9
-16
lines changed Expand file tree Collapse file tree 1 file changed +9
-16
lines changed Original file line number Diff line number Diff line change @@ -19,25 +19,18 @@ You define a version range by adding a comparison string to the `spec.version` f
19
19
20
20
#### Basic comparisons
21
21
22
- | Operator | Definition |
23
- | ----------| -----------------------------------|
24
- | ` = ` | equal (not aliased to an operator |
25
- | ` != ` | not equal |
26
- | ` > ` | greater than |
27
- | ` < ` | less than |
28
- | ` >= ` | greater than or equal to |
29
- | ` <= ` | less than or equal to |
22
+ | Operator | Definition |
23
+ | ----------| ------------------------------------ |
24
+ | ` = ` | equal (not aliased to an operator) |
25
+ | ` != ` | not equal |
26
+ | ` > ` | greater than |
27
+ | ` < ` | less than |
28
+ | ` >= ` | greater than or equal to |
29
+ | ` <= ` | less than or equal to |
30
30
31
31
#### Range comparisons
32
32
33
- OLM 1.0 does not support hypen range comparisons.
34
- For example, the following range option is not supported:
35
-
36
- ``` yaml
37
- version : 3.0 - 3.6
38
- ` ` `
39
-
40
- To specify a version range, use a method similar to the following example:
33
+ To specify a version range, use a range comparison similar to the following example:
41
34
42
35
``` yaml
43
36
version : >=3.0, <3.6
You can’t perform that action at this time.
0 commit comments