From f08390e82b5638003458ea3f3564e9006282ad00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Ho=CC=88nicke?= Date: Tue, 4 Apr 2023 19:50:39 +0200 Subject: [PATCH] refactor: cleanup --- scripts/release.sh | 7 +++---- setup.py | 2 +- src/__init__.py | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/scripts/release.sh b/scripts/release.sh index b22d412..da0113a 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -41,10 +41,9 @@ 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 commit -m "chore(version): the next version will be $NEXT_VER" -m "build($RELEASE_ACTOR): $RELEASE_REASON" + 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)" } function make_release_note { diff --git a/setup.py b/setup.py index 0a24f5e..fbbba84 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ def read_requirements(): setup( name='gptdeploy', - version='0.1.4', + version='0.1.5', description='Use natural language interface to create, deploy and update your microservice infrastructure.', long_description=open('README.md', 'r', encoding='utf-8').read(), long_description_content_type='text/markdown', diff --git a/src/__init__.py b/src/__init__.py index bad32e9..e2888cc 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1 +1 @@ -__version__ = '0.1.4' \ No newline at end of file +__version__ = '0.1.5' \ No newline at end of file