1.0.1 • Published 3 years ago

semver-increment v1.0.1

Weekly downloads
420
License
-
Repository
github
Last release
3 years ago

SemVer-Increment

Build Status codecov

Handly library to bump Semantic Version numbers.

var bumpVersion = require('semver-increment');
var MAJOR = 0;                                 // don't bump MAJOR
var MINOR = 1;                                 // bump MINOR
var PATCH = 0;                                 // don't bump PATCH
var masks = [MAJOR, MINOR, PATCH];
var nextVersion = bumpVersion(masks, '1.2.3'); // -> 1.3.0

Features

  • Bump SemVer number according to MASKS (for bits are non-zero)
  • Bump PATCH number if no MASKS are provided, or MASKS is [0, 0, 0]
  • Bump the biggest number (e.g. If MAJOR and MINOR are both non-zero, bump MAJOR)

Run Tests

$ npm test

Installation

$ npm install semver-increment --save

Generate Document

npm run docs

LICENSE

To be discussed.