1
0
Fork 0

Clarify tilde operator docs

pull/1598/merge
Jordi Boggiano 2013-02-19 16:11:49 +01:00
parent 5a484cb3a9
commit 97fdcd7207
1 changed files with 4 additions and 2 deletions

View File

@ -78,8 +78,10 @@ Version constraints can be specified in a few different ways.
explained by example: `~1.2` is equivalent to `>=1.2,<2.0`, while `~1.2.3` is explained by example: `~1.2` is equivalent to `>=1.2,<2.0`, while `~1.2.3` is
equivalent to `>=1.2.3,<1.3`. As you can see it is mostly useful for projects equivalent to `>=1.2.3,<1.3`. As you can see it is mostly useful for projects
respecting semantic versioning. A common usage would be to mark the minimum respecting semantic versioning. A common usage would be to mark the minimum
minor version you depend on, like `~1.2`, since in theory there should be no minor version you depend on, like `~1.2` (which allows anything up to, but not
backwards compatibility breaks until 2.0, that works well. including, 2.0). Since in theory there should be no backwards compatibility
breaks until 2.0, that works well. Another way of looking at it is that using
`~` specifies a minimum version, but allows the last digit specified to go up.
By default only stable releases are taken into consideration. If you would like By default only stable releases are taken into consideration. If you would like
to also get RC, beta, alpha or dev versions of your dependencies you can do to also get RC, beta, alpha or dev versions of your dependencies you can do