From b1886533db59227e956582d84692bb711585931c Mon Sep 17 00:00:00 2001 From: ivan Date: Sun, 27 Oct 2024 13:48:43 +0300 Subject: [PATCH] Fix release cmd --- Makefile | 2 +- src/injection/__version__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 850e68d..dc3bf81 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/src/injection/__version__.py b/src/injection/__version__.py index d0f2dbd..2f0abb8 100644 --- a/src/injection/__version__.py +++ b/src/injection/__version__.py @@ -1 +1 @@ -__version__ = "v1.2.0" +__version__ = "v1.1.0"