Skip to content

Commit

Permalink
Updated DEVELOPING.md
Browse files Browse the repository at this point in the history
  • Loading branch information
anjanvb committed Sep 11, 2024
1 parent 6297c3f commit a5a1a9f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions DEVELOPING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

0 comments on commit a5a1a9f

Please sign in to comment.