From f360c2d091b63d8129d5bdf47120b8b062b900a9 Mon Sep 17 00:00:00 2001 From: "guangtian.li" Date: Fri, 12 Jun 2020 16:33:33 +0800 Subject: [PATCH] =?UTF-8?q?:bookmark:=20Bump=20version:=200.5.1=20?= =?UTF-8?q?=E2=86=92=200.6.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 | 3 +-- setup.py | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 5a21b2b..fb5fad3 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,9 +52,9 @@ # the built documents. # # The short X.Y version. -version = "0.5.1" +version = "0.6.0" # The full version, including alpha/beta/rc tags. -release = "0.5.1" +release = "0.6.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 d1d4f38..0f893c4 100644 --- a/grpcalchemy/__init__.py +++ b/grpcalchemy/__init__.py @@ -7,7 +7,7 @@ __author__ = """GuangTian Li""" __email__ = "guangtian_li@qq.com" -__version__ = "0.5.1" +__version__ = "0.6.0" __all__ = ["Blueprint", "Context", "grpcmethod", "DefaultConfig", "Server"] diff --git a/setup.cfg b/setup.cfg index 76ba633..8e347a3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.1 +current_version = 0.6.0 commit = True tag = True message = :bookmark: Bump version: {current_version} → {new_version} @@ -24,4 +24,3 @@ universal = 1 [mypy] follow_imports = silent ignore_missing_imports = true - diff --git a/setup.py b/setup.py index 0115d28..b248374 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.5.1", + version="0.6.0", zip_safe=False, )