Code status | Stage | Rule | Example version |
First release | New product | Start with 1.0.0 | 1.0.0 |
Backward compatible bug fixes | Patch release | Increment the third digit | 1.0.1 |
Backward compatible new features | Minor release | Increment the middle digit and reset last digit to zero | 1.1.0 |
Changes that break backward compatibility | Major release | Increment the first digit and reset middle and last digits to zero | 2.0.0 |
npm version patch
npm version minor
npm version major
npm install jquery@~3.3.0
,我想要安装的是 3.3.0 以上最高的 patch version 但是在 package.json 中会发现,dependencies 里会有 jquery: ^3.3.1
,这是因为 npm semver 默认你接受 3.3.1 以上的所有 minor version。那以后在重新安装依赖的时候 (npm install
),会根据 package.json 里的版本号来判定。这可能不是你所期望的,可以通过手动指定 package.json 里的版本号来修改这个默认行为。