Skip to content

Commit e2a521b

Browse files
Apply review feedback
- Close parenthesis on line 11 - Remove mention of hyphen range comparisons
1 parent a112f0f commit e2a521b

File tree

1 file changed

+9
-16
lines changed

1 file changed

+9
-16
lines changed

docs/drafts/version-ranges.md

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,18 @@ You define a version range by adding a comparison string to the `spec.version` f
1919

2020
#### Basic comparisons
2121

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 |
3030

3131
#### Range comparisons
3232

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:
4134

4235
```yaml
4336
version: >=3.0, <3.6

0 commit comments

Comments
 (0)