Skip to content

Commit

Permalink
[feat] release flow
Browse files Browse the repository at this point in the history
  • Loading branch information
8baller committed Nov 9, 2023
1 parent 6cc19c4 commit 003a2ab
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,19 @@ For convience, all commands can be run with;
```
make all
```

### Releases
### Releasing

We can use `tbump` to automatically bump our versions in preparation of a release.

```bash
new_version=0.1.1
git checkout -b v$new_version
git push --set-upstream origin $(git rev-parse --abbrev-ref HEAD)
tbump new_version
```

The release workflow will then detect that a branch with a `v` prefix exists and create a release from it.

Additionally, the package will be published to PyPI.

0 comments on commit 003a2ab

Please sign in to comment.