peterbraden / node-opencv

OpenCV Bindings for node.js
MIT License
4.37k stars 858 forks source link

Please add tags #652

Open guimard opened 5 years ago

guimard commented 5 years ago

Hello, last update tags are missing in your repo (6.0.1, 6.0.2). It is not easy for packager to follow your changes. Could you add them ?

Cheers, Xavier

kapouer commented 4 years ago

@peterbraden please add 7.0.0 tag as well ! BTW this is what i do to bump a new version on a clean git repo:

#!/bin/sh
version=$1
nothing=`git status -s`
if [ ! -z "$nothing" ]; then git stash -u ; fi
npm version $version -m "Version %s" --allow-same-version
git push && git push --tags
npm publish
if [ ! -z "$nothing" ]; then git stash apply; fi
kapouer commented 4 years ago
cd myopensourcenpmmodule
npmp 1.2.3
peterbraden commented 4 years ago

Can someone add a PR to add a github job to do this automatically?

kapouer commented 4 years ago

No idea how to do this. Meanwhile it would be great to just get the tag (it's blocking things here in debian).