Tag Releases
I should start tagging new releases and look into if it's possible to retroactively tag older versions.
We should be able to do this by specifying the commit's checksum...
Sample commit: 3a7bfbc
$ git tag -a v1.0.0 3a7bfbc
@vutran is there a way to figure out the commit for a NPM _ackage ?
npm usually reads from the version specified from package.json.
If you've been using npm version <something> to bump, it should have automatically created git tags locally as well as a new commit that bumps the version in package.json. It makes it really easy to see where the tag points are in the commit history.
Cool will try that in future :) and will have to manually tag the older releases I guess.