Skip to content

Commit

Permalink
docs: clarify * range behavior
Browse files Browse the repository at this point in the history
Fix: #329
  • Loading branch information
isaacs committed Nov 8, 2021
1 parent f1e4e29 commit cb1ca1d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -264,7 +264,9 @@ provided tuple parts.
Any of `X`, `x`, or `*` may be used to "stand in" for one of the
numeric values in the `[major, minor, patch]` tuple.

* `*` := `>=0.0.0` (Any version satisfies)
* `*` := `>=0.0.0` (Any non-prerelease version satisfies, unless
`includePrerelease` is specified, in which case any version at all
satisfies)
* `1.x` := `>=1.0.0 <2.0.0-0` (Matching major version)
* `1.2.x` := `>=1.2.0 <1.3.0-0` (Matching major and minor versions)

Expand Down

0 comments on commit cb1ca1d

Please sign in to comment.