Release guide#
This document is only relevant for Archetypes release managers.
A guide for developers who are doing a Archetypes release.
Bump the version of the project using a valid bump rule (
patch,minor,major) according to the release commits:uv version --bump [bump rule]
Commit the changes:
git commit -a -m "Getting ready for release $(uv version --short)" git push
Create a tag from
mainand push it to the Github repo. Use the next message:git tag -a v$(uv version --short) -m "Tagging version $(uv version --short)" git push --tags
Create a release on Github.