Update Versioning authored by Klaas Kliffen's avatar Klaas Kliffen
...@@ -30,6 +30,14 @@ git tag -a v1.0.2 -m "Patch release v1.0.2" ...@@ -30,6 +30,14 @@ git tag -a v1.0.2 -m "Patch release v1.0.2"
git push --tags # alternatively, use git push --all) git push --tags # alternatively, use git push --all)
``` ```
It's also possible to create a tag via the Gitlab GUI:
![tag_list](uploads/7c57cf5ecc8c893e3279f88b27b31064/tag_list.png)
Here it's also possible to create an annotated tag by adding a message:
![creating_tag](uploads/78376f7eaaf0e82892564aa58a0d4b28/creating_tag.png)
### Python Package ### Python Package
In python we use [setuptool_scm](https://github.com/pypa/setuptools_scm/). In python we use [setuptool_scm](https://github.com/pypa/setuptools_scm/).
It requires a git repository to function (can be empty!). It requires a git repository to function (can be empty!).
... ...
......