Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/concepts/version-ranges.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ If you use a wildcard character with the `=` operator, you define a patch level
This is equivalent to making a tilde range comparison.

*Example comparisons with wildcard characters*

| Comparison | Equivalent |
|------------|---------------------|
| `1.2.x` | `>= 1.2.0, < 1.3.0` |
Expand All @@ -55,6 +56,7 @@ You can use the tilde (`~`) operator to make patch release comparisons.
This is useful when you want to specify a minor version up to the next major version.

*Example patch release comparisons*

| Comparison | Equivalent |
|------------|---------------------|
| `~1.2.3` | `>= 1.2.3, < 1.3.0` |
Expand Down