You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are two methods for comparing versions. One uses comparison methods on
72
-
`Version` instances and the other is using Constraints. There are some important
75
+
`Version` instances and the other uses `Constraints`. There are some important
73
76
differences to notes between these two methods of comparison.
74
77
75
78
1. When two versions are compared using functions such as `Compare`, `LessThan`,
76
79
and others it will follow the specification and always include prereleases
77
-
within the comparison. It will provide an answer valid with the comparison
78
-
spec section at https://semver.org/#spec-item-11
80
+
within the comparison. It will provide an answer that is valid with the
81
+
comparison section of the spec at https://semver.org/#spec-item-11
79
82
2. When constraint checking is used for checks or validation it will follow a
80
83
different set of rules that are common for ranges with tools like npm/js
81
84
and Rust/Cargo. This includes considering prereleases to be invalid if the
82
-
ranges does not include on. If you want to have it include pre-releases a
85
+
ranges does not include one. If you want to have it include pre-releases a
83
86
simple solution is to include `-0` in your range.
84
-
3. Constraint ranges can have some complex rules including the shorthard use of
87
+
3. Constraint ranges can have some complex rules including the shorthand use of
85
88
~ and ^. For more details on those see the options below.
86
89
87
90
There are differences between the two methods or checking versions because the
88
91
comparison methods on `Version` follow the specification while comparison ranges
89
92
are not part of the specification. Different packages and tools have taken it
90
93
upon themselves to come up with range rules. This has resulted in differences.
91
-
For example, npm/js and Cargo/Rust follow similar patterns which PHP has a
94
+
For example, npm/js and Cargo/Rust follow similar patterns while PHP has a
92
95
different pattern for ^. The comparison features in this package follow the
93
96
npm/js and Cargo/Rust lead because applications using it have followed similar
94
97
patters with their versions.
@@ -113,8 +116,8 @@ a := c.Check(v)
113
116
### Basic Comparisons
114
117
115
118
There are two elements to the comparisons. First, a comparison string is a list
116
-
of comma separated AND comparisons. These are then separated by || (OR)
117
-
comparisons. For example, `">= 1.2, < 3.0.0 || >= 4.2.3"` is looking for a
119
+
of space or comma separated AND comparisons. These are then separated by || (OR)
120
+
comparisons. For example, `">= 1.2 < 3.0.0 || >= 4.2.3"` is looking for a
118
121
comparison that's greater than or equal to 1.2 and less than 3.0.0 or is
119
122
greater than or equal to 4.2.3.
120
123
@@ -147,7 +150,9 @@ at a list of releases while `>=1.2.3-0` will evaluate and find prereleases.
147
150
148
151
The reason for the `0` as a pre-release version in the example comparison is
149
152
because pre-releases can only contain ASCII alphanumerics and hyphens (along with
150
-
`.` separators), per the spec. Sorting happens in ASCII sort order, again per the spec. The lowest character is a `0` in ASCII sort order (see an [ASCII Table](http://www.asciitable.com/))
153
+
`.` separators), per the spec. Sorting happens in ASCII sort order, again per the
154
+
spec. The lowest character is a `0` in ASCII sort order
155
+
(see an [ASCII Table](http://www.asciitable.com/))
151
156
152
157
Understanding ASCII sort ordering is important because A-Z comes before a-z. That
153
158
means `>=1.2.3-BETA` will return `1.2.3-alpha`. What you might expect from case
@@ -159,14 +164,14 @@ the spec specifies.
159
164
There are multiple methods to handle ranges and the first is hyphens ranges.
160
165
These look like:
161
166
162
-
*`1.2 - 1.4.5` which is equivalent to `>= 1.2, <= 1.4.5`
163
-
*`2.3.4 - 4.5` which is equivalent to `>= 2.3.4, <= 4.5`
167
+
*`1.2 - 1.4.5` which is equivalent to `>= 1.2 <= 1.4.5`
168
+
*`2.3.4 - 4.5` which is equivalent to `>= 2.3.4 <= 4.5`
164
169
165
170
### Wildcards In Comparisons
166
171
167
172
The `x`, `X`, and `*` characters can be used as a wildcard character. This works
168
173
for all comparison operators. When used on the `=` operator it falls
169
-
back to the pack level comparison (see tilde below). For example,
174
+
back to the patch level comparison (see tilde below). For example,
0 commit comments