I noticed that even though I have specified version ^0.5.5 of v-calendar library, and as of today version 0.6.3 is available, when I run npm update, the package is not updated.
When I test the version ^0.5.5 in npmsemver calculator, only version 0.5.5 is in green, meaning that npm ignores versions 0.6.x and up.
Am I correct in assuming that semantic versioning with npm works only if the package is on version 1.0.0 and up?
npm docs specify that:
If a project is going to be shared with others, it should start at 1.0.0, (though some projects on npm don't follow this rule).
but I couldn't find anything there saying that semantic versioning won't work if you release a package starting at version 0.x.x.