Skip to content

Commit

Permalink
Fix release cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan committed Oct 27, 2024
1 parent b80c211 commit b188653
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ docs-deps:
release:
git tag -a "v$(hatch version)" -m "v$(hatch version)"
git add . && git commit -m "Bump version" && git push
git push origin $(git describe --tags $(git rev-list --tags --max-count=1))
git push origin "$(git describe --tags $(git rev-list --tags --max-count=1))"

release-patch:
hatch version patch
Expand Down
2 changes: 1 addition & 1 deletion src/injection/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "v1.2.0"
__version__ = "v1.1.0"

0 comments on commit b188653

Please sign in to comment.