florrain / locale

Browser locale negotiation for node.js
MIT License
257 stars 36 forks source link

Tag releases #28

Closed paazmaya closed 10 years ago

paazmaya commented 10 years ago

For example:

git tag v0.0.20 5012622e926a27785d33efa084ab857fdcc1e783

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

stuartf commented 10 years ago

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 10 years ago

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

paazmaya commented 10 years ago

Sweet! Thanks @stuartf for the command.