florrain/locale

Tag releases

Closed this issue · 3 comments

For example:

git tag v0.0.20 5012622e926a27785d33efa084ab857fdcc1e783

Having tags available would make it easier to see differences between releases.

Good thing all the commit messages for the releases were already just the version numbers, so I was able to do:

git log --grep '0\.0\.[[:digit:]]*' --no-merges --format='format:git tag v%s %H' |bash
jed commented

yeah, this is a nice side effect of using npm version patch.

Sweet! Thanks @stuartf for the command.