Skip to content

Commit

Permalink
docs: updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Diliz committed Jun 14, 2024
1 parent 434cbd8 commit 86e769b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ greater than or equal to 4.2.3.
The basic comparisons are:

* `=`: equal (aliased to no operator)
* `==`: strictly equal
* `!=`: not equal
* `>`: greater than
* `<`: less than
Expand Down Expand Up @@ -181,6 +182,7 @@ for all comparison operators. When used on the `=` operator it falls
back to the patch level comparison (see tilde below). For example,

* `1.2.x` is equivalent to `>= 1.2.0, < 1.3.0`
* `==1.2.x` is equivalent to `== 1.2.0`
* `>= 1.2.x` is equivalent to `>= 1.2.0`
* `<= 2.x` is equivalent to `< 3`
* `*` is equivalent to `>= 0.0.0`
Expand Down

0 comments on commit 86e769b

Please sign in to comment.