From b07d57cc0962b83337e15e9be5390cab4522c669 Mon Sep 17 00:00:00 2001 From: GuangTianLi Date: Tue, 27 Oct 2020 10:36:33 +0800 Subject: [PATCH] =?UTF-8?q?:bookmark:=20Bump=20version:=200.6.1=20?= =?UTF-8?q?=E2=86=92=200.6.2?= 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 b5c58af..958b0be 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,9 +52,9 @@ # the built documents. # # The short X.Y version. -version = "0.6.1" +version = "0.6.2" # The full version, including alpha/beta/rc tags. -release = "0.6.1" +release = "0.6.2" # 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 1e34ad4..de8fcc0 100644 --- a/grpcalchemy/__init__.py +++ b/grpcalchemy/__init__.py @@ -7,7 +7,7 @@ __author__ = """GuangTian Li""" __email__ = "guangtian_li@qq.com" -__version__ = "0.6.1" +__version__ = "0.6.2" __all__ = ["Blueprint", "Context", "grpcmethod", "DefaultConfig", "Server"] diff --git a/setup.cfg b/setup.cfg index 1e05c41..b90f2c8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.1 +current_version = 0.6.2 commit = True tag = True message = :bookmark: Bump version: {current_version} → {new_version} diff --git a/setup.py b/setup.py index 4eb5207..a47d217 100644 --- a/setup.py +++ b/setup.py @@ -48,6 +48,6 @@ tests_require=test_requirements, url="https://github.com/GuangTianLi/grpcalchemy", python_requires=">=3.6.0", - version="0.6.1", + version="0.6.2", zip_safe=False, )