This repository was archived by the owner on Jan 16, 2020. It is now read-only.
This repository was archived by the owner on Jan 16, 2020. It is now read-only.
Docs on semver tilde version range is wrong #93
Closed
Description
http://plugins.jquery.com/docs/package-manifest/
It says:
"~1.2" = ">=1.2.0 <2.0.0"
but from the semver node module docs, it should be:
"~1.2" = ">=1.2.0 <1.3.0"
related bower/bower#207