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:hatch version [bump rule]
Commit the changes:
git commit -a -m "Getting ready for release $(hatch version)" git push
Create a tag from
main
and push it to the Github repo. Use the next message:git tag -a v$(hatch version) -m "Tagging version $(hatch version)" git push --tags
Create a release on Github.