Skip to content
This repository has been archived by the owner on Oct 29, 2024. It is now read-only.

Commit

Permalink
bump: 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
trim21 committed May 20, 2024
1 parent 40874a3 commit 119a6ec
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ tasks:
build:
cmds:
- cmd: python setup.py build wheel
bump:
vars:
VERSION:
sh: yq '.project.version' pyproject.toml
cmds:
- git add pyproject.toml
- 'git commit -m "bump: {{.VERSION}}"'
- 'git tag "v{{.VERSION}}"'

dev:
sources:
Expand All @@ -11,7 +19,7 @@ tasks:
- src/**/*.py
- tests/**/*.py
- tests/*.py
- '*.py'
- "*.py"
generates:
- src/**/*.so
env:
Expand Down

0 comments on commit 119a6ec

Please sign in to comment.