Skip to content
This repository was archived by the owner on Dec 20, 2022. It is now read-only.

Latest commit

 

History

History
24 lines (19 loc) · 656 Bytes

MAINTAINING.md

File metadata and controls

24 lines (19 loc) · 656 Bytes

Maintaining

Releasing a new version

This project follows semver. So if you are making a bug fix, only increment the patch level "1.0.x". If any new files are added, a minor version "1.x.x" bump is in order.

Make a release commit

To prepare the release commit, edit the package.json version value. Then make a single commit with the description as "Time Elements 1.x.x". Finally, tag the commit with v1.x.x.

$ git pull
$ vim package.json
$ git add package.json
$ git ci -m "Time Elements 1.x.x"
$ git tag v1.x.x
$ git push
$ git push --tags