We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 434cbd8 commit 86e769bCopy full SHA for 86e769b
1 file changed
README.md
@@ -128,6 +128,7 @@ greater than or equal to 4.2.3.
128
The basic comparisons are:
129
130
* `=`: equal (aliased to no operator)
131
+* `==`: strictly equal
132
* `!=`: not equal
133
* `>`: greater than
134
* `<`: less than
@@ -181,6 +182,7 @@ for all comparison operators. When used on the `=` operator it falls
181
182
back to the patch level comparison (see tilde below). For example,
183
184
* `1.2.x` is equivalent to `>= 1.2.0, < 1.3.0`
185
+* `==1.2.x` is equivalent to `== 1.2.0`
186
* `>= 1.2.x` is equivalent to `>= 1.2.0`
187
* `<= 2.x` is equivalent to `< 3`
188
* `*` is equivalent to `>= 0.0.0`
0 commit comments