2.3.1 tag?
Closed this issue · 3 comments
dvisztempacct commented
The repo doesn't seem to have a tag for 2.3.1 or any other published versions!
npm version
will automatically tag commits for you if you use that to bump your version number!
e.g.
donviszneki@Lilys-MBP ~/foobar$ npm init -y
Wrote to /Users/donviszneki/foobar/package.json:
{
"name": "foobar",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC"
}
donviszneki@Lilys-MBP ~/foobar$ git add package.json
donviszneki@Lilys-MBP ~/foobar$ git commit -m first\ post
[master (root-commit) 804bb1e] first post
1 file changed, 12 insertions(+)
create mode 100644 package.json
donviszneki@Lilys-MBP ~/foobar$ npm version patch
v1.0.1
donviszneki@Lilys-MBP ~/foobar$ git tag --list
v1.0.1
gilbert commented
Nice, thanks for showing me this. I'll get a tag up for 2.3.1 and try using npm version for future releases.
gilbert commented
Tag added and pushed.
dvisztempacct commented
Thanks @gilbert :)