Comment on Node.js v0.9.0 (Unstable) is outparentComments−pygy_14yThey use a variation on semantic versioning, which is pretty standard: major.minor.revision revision is incremented when backwards compatible bug fixes are addedminor is incremented when backwards compatible features are addedmajor is incremented when backwards incompatible change is introduced.All of them are integers, and the smaller ones are reset to 0 when a bigger one is incremented.For versions 0.x.x (pre v1), backwards incompatible changes are allowed at any time.There are more rules, see http://semver.org/
Comments
They use a variation on semantic versioning, which is pretty standard:
revision is incremented when backwards compatible bug fixes are addedminor is incremented when backwards compatible features are added
major is incremented when backwards incompatible change is introduced.
All of them are integers, and the smaller ones are reset to 0 when a bigger one is incremented.
For versions 0.x.x (pre v1), backwards incompatible changes are allowed at any time.
There are more rules, see http://semver.org/