From a65c72a2363d5043c27e63053b3ef2df86adbaca Mon Sep 17 00:00:00 2001 From: Esteban Borai Date: Sat, 29 Aug 2020 15:49:39 -0300 Subject: [PATCH] docs: releasing docs --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index d467905..b67a7d3 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,15 @@ async fn main() { } ``` +## Releasing + +To release a new version you must tag with git and push to the `main` branch. + +```bash +git tag -a v0.1.0 -m "First Release" +git push origin main --follow-tags +``` + ## Contributing Every contribution to this project is welcome! Feel free to open a pull request or an issue.