From 3194d01ffc81b72b78a5fa893e914cb0164b7901 Mon Sep 17 00:00:00 2001 From: Joschka Braun Date: Mon, 24 Apr 2023 14:58:09 +0200 Subject: [PATCH] :bookmark: fix: simplify tag --- scripts/release.sh | 2 +- src/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/release.sh b/scripts/release.sh index d9ecf59..ac79579 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -43,7 +43,7 @@ function pub_pypi { function git_commit { git config --local user.email "dev-bot@jina.ai" git config --local user.name "Jina Dev Bot" - git tag "v$RELEASE_VER" -m "$(cat ./CHANGELOG.tmp)" + git tag "v$RELEASE_VER" git add $INIT_FILE git commit -m "chore(version): the next version will be $NEXT_VER" -m "build($RELEASE_ACTOR): $RELEASE_REASON" } diff --git a/src/__init__.py b/src/__init__.py index 90b9484..d6831cf 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1,3 +1,3 @@ -__version__ = '0.18.31' +__version__ = '0.18.32' from src.cli import main \ No newline at end of file