Skip to content

Commit a5a1a9f

Browse files
committed
Updated DEVELOPING.md
1 parent 6297c3f commit a5a1a9f

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

DEVELOPING.md

+18
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,22 @@ Once the `requirements.txt` is generated (or updated), run the `pip-audit` comma
8686

8787
```bash
8888
pip-audit -r requirements.txt
89+
```
90+
91+
#### Build and publish
92+
93+
To bump up the Library version.
94+
95+
```bash
96+
poetry version 0.X.X
97+
```
98+
99+
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.
100+
101+
```bash
102+
git add -A
103+
git commit -m "Release v0.X.X"
104+
git tag -a v0.X.X -m "Release 0.X.X"
105+
git push --tags
106+
git push origin main
89107
```

0 commit comments

Comments
 (0)