Closed KotlinIsland closed 1 year ago
"~1.1" -> "~2.2.2" "~1" -> "^2.2.2"
"~1.1"
"~2.2.2"
"~1"
"^2.2.2
The case of the dotless tilde (~1 == ^1 == >=1, <2) is not handled in this case and is changed as before to a caret.
~1
^1
>=1, <2
"~1.1"
->"~2.2.2"
"~1"
->"^2.2.2
"The case of the dotless tilde (
~1
==^1
==>=1, <2
) is not handled in this case and is changed as before to a caret.