Given a version number MAJOR.MINOR.PATCH, increment the:
MAJOR version when you make incompatible API changes Example : 1.0.0 MINOR version when you add functionality in a backward compatible manner Example : 0.1.0 PATCH version when you make backward compatible bug fixes Example : 0.0.1
To install the dependencies use the following command :
make
To publish the package use the following command :
make publish v=MAJOR.MINOR.PATCH
(Replace MAJOR.MINOR.PATCH with the right version number)
To test the code use the following command :
make test