We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bb6907 commit a358ba5Copy full SHA for a358ba5
justfile
@@ -37,3 +37,10 @@ pyright *args: (poetry "run" "pyright" "pydantic_async_validation" args)
37
lint: ruff pyright
38
39
publish: (poetry "publish" "--build")
40
+
41
+release version: (poetry "version" version)
42
+ git add pyproject.toml
43
+ git commit -m "release: 🔖 v$(poetry version --short)" --no-verify
44
+ git tag "v$(poetry version --short)"
45
+ git push
46
+ git push --tags
0 commit comments