mlaanderson / database-js

Common Database Interface for Node
MIT License
74 stars 16 forks source link

To adopt Semantic Versioning #10

Closed thiagodp closed 6 years ago

thiagodp commented 6 years ago

Please adopt Semantic Versioning in this project and in related projects. New versions could be released as tags.

mlaanderson commented 6 years ago

I tagged the current state at v1.2.2 to match the version on NPM.

I have been using npm version which does tag the versions, but didn't understand git well enough to know how to push the tags up. I'll start on the semantic versioning from here.

thiagodp commented 6 years ago

Hi @mlaanderson. You can create a tag like this:

git tag v1.2.2 -m "Version description here"

Then push it to the remote repo:

git push --tags

To see all the current tags and their messages:

git tag -n