Closed mkht closed 6 years ago
Comparators can be joined by whitespace. which is satisfied by the intersection of all of the comparators it includes.
For example, the range >=1.2.7 <1.3.0 would match the versions 1.2.7, 1.2.8, and 1.2.99, but not the versions 1.2.6, 1.3.0, or 1.1.0.
>=1.2.7 <1.3.0
1.2.7
1.2.8
1.2.99
1.2.6
1.3.0
1.1.0
Comparators can be joined by whitespace. which is satisfied by the intersection of all of the comparators it includes.
For example, the range
>=1.2.7 <1.3.0
would match the versions1.2.7
,1.2.8
, and1.2.99
, but not the versions1.2.6
,1.3.0
, or1.1.0
.