The tilde
~
matches the most recent patch version (the third number) for the specified minor version (the second number).~1.2.3
will match all1.2.x
versions but will hold off on1.3.0
.
The caret
^
is more relaxed. It matches the most recent minor version (the second number) for the specified major version (the first number).^1.2.3
will match any1.x.x
release including1.3.0
, but will hold off on2.0.0
.