From a5a1a9f94c2b63cda3044b09e894ffeb84ea33e3 Mon Sep 17 00:00:00 2001 From: Anjan Biswas Date: Wed, 11 Sep 2024 11:40:28 -0700 Subject: [PATCH] Updated DEVELOPING.md --- DEVELOPING.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/DEVELOPING.md b/DEVELOPING.md index 9872670..a312038 100644 --- a/DEVELOPING.md +++ b/DEVELOPING.md @@ -86,4 +86,22 @@ Once the `requirements.txt` is generated (or updated), run the `pip-audit` comma ```bash pip-audit -r requirements.txt +``` + +#### Build and publish + +To bump up the Library version. + +```bash +poetry version 0.X.X +``` + +Then add the changes to repo, create a tag and push to Github. Make sure that version `0.X.X` is consistent across the new Poetry version created above and the for Github Tag. + +```bash +git add -A +git commit -m "Release v0.X.X" +git tag -a v0.X.X -m "Release 0.X.X" +git push --tags +git push origin main ``` \ No newline at end of file