How to contribute¶
TBD.
Deploy a new release¶
- Prepare a new branch.
- Bump version:
We do follow semver, so use the appropriate string instead of
$ poetry version patch"patch"to increment the version (e.g.minor,major,prerelease) - Push the new branch and open a PR.
- Once merged, create a new tag :
$ git tag "v$(poetry version --short)" && git push --tags - Wait for the
releaseworkflow to finish. - Edit the release note manually on Github for the just created release.
TODO:
- Add
CHANGELOG? - We might automate the tag creation once the a new version land in the main branch.