Skip to content

Commit

Permalink
Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
e3rd committed Jan 20, 2025
1 parent 73c7a2b commit 004b2c0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#export TAG := `grep version pyproject.toml | pz --search '"(\d+\.\d+\.\d+(?:rc\d+)?)?"'`
export TAG := `grep version convey/__init__.py | pz --search '"(\d+\.\d+\.\d+(?:rc\d+)?)?"'`

release:
git tag $(TAG)
git push origin $(TAG)
#mkdocs gh-deploy
2 changes: 1 addition & 1 deletion convey/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .decorators import PickMethod, PickInput

__all__ = ["PickMethod", "PickInput"]
__version__ = "1.4.5"
__version__ = "1.4.6"

0 comments on commit 004b2c0

Please sign in to comment.