Skip to content

Commit

Permalink
docs: update release instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
JanPokorny committed Oct 10, 2024
1 parent cfe14b7 commit c7d97ee
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,14 @@ poe test
#### Publish a new version:

```shell
VERSION=...
git checkout main
git pull
poetry version 0.0.42
poetry version $VERSION
git add pyproject.toml
git commit -m "chore: bump version to v0.0.42"
git tag v0.0.42
git push origin main v0.0.42
git commit -m "chore: bump version to v$VERSION"
git tag v$VERSION
git push origin main v$VERSION
```

---
Expand Down

0 comments on commit c7d97ee

Please sign in to comment.