From 1efb5074ab0203c284cb7aee21b010f61cb2227f Mon Sep 17 00:00:00 2001 From: GuangTianLi Date: Sat, 20 Mar 2021 16:38:56 +0800 Subject: [PATCH] =?UTF-8?q?:bookmark:=20Bump=20version:=200.6.2=20?= =?UTF-8?q?=E2=86=92=200.7.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/conf.py | 4 ++-- grpcalchemy/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 958b0be..bbca0d4 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,9 +52,9 @@ # the built documents. # # The short X.Y version. -version = "0.6.2" +version = "0.7.0" # The full version, including alpha/beta/rc tags. -release = "0.6.2" +release = "0.7.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/grpcalchemy/__init__.py b/grpcalchemy/__init__.py index de8fcc0..eb11498 100644 --- a/grpcalchemy/__init__.py +++ b/grpcalchemy/__init__.py @@ -7,7 +7,7 @@ __author__ = """GuangTian Li""" __email__ = "guangtian_li@qq.com" -__version__ = "0.6.2" +__version__ = "0.7.0" __all__ = ["Blueprint", "Context", "grpcmethod", "DefaultConfig", "Server"] diff --git a/setup.cfg b/setup.cfg index b90f2c8..6ac6eec 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.2 +current_version = 0.7.0 commit = True tag = True message = :bookmark: Bump version: {current_version} → {new_version} diff --git a/setup.py b/setup.py index 47e84a3..6794f1e 100644 --- a/setup.py +++ b/setup.py @@ -50,6 +50,6 @@ tests_require=test_requirements, url="https://github.com/GuangTianLi/grpcalchemy", python_requires=">=3.6.0", - version="0.6.2", + version="0.7.0", zip_safe=False, )