We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 750c1b1 commit 1872a2dCopy full SHA for 1872a2d
README.md
@@ -49,8 +49,15 @@ You will have to update the version number in the setup.py file. Increase the fi
49
the second digit for MINOR changes and the third digit for BUG FIXES.
50
51
Also make sure that you create a new release on github at the commit that you deploy. To do so you have to create a tag
52
-with the version number and add it to a release.
53
-
+with the version number and add it to a release. The command to create a tag is
+```
54
+git tag -a vX.X.X commit_id -m "Your message here"
55
56
+with the `commit_id``being the id of the commit that you are deploying. Then you just use
57
58
+git push origin vX.X.X
59
60
+to send the tag to github.
61
62
### Process (dev)
63
0 commit comments