diff --git a/docs/conf.py b/docs/conf.py index fb5fad3..b5c58af 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,9 +52,9 @@ # the built documents. # # The short X.Y version. -version = "0.6.0" +version = "0.6.1" # The full version, including alpha/beta/rc tags. -release = "0.6.0" +release = "0.6.1" # 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 0f893c4..1e34ad4 100644 --- a/grpcalchemy/__init__.py +++ b/grpcalchemy/__init__.py @@ -7,7 +7,7 @@ __author__ = """GuangTian Li""" __email__ = "guangtian_li@qq.com" -__version__ = "0.6.0" +__version__ = "0.6.1" __all__ = ["Blueprint", "Context", "grpcmethod", "DefaultConfig", "Server"] diff --git a/setup.cfg b/setup.cfg index 8e347a3..1e05c41 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.0 +current_version = 0.6.1 commit = True tag = True message = :bookmark: Bump version: {current_version} → {new_version} diff --git a/setup.py b/setup.py index d7e01cf..4eb5207 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.0", + version="0.6.1", zip_safe=False, )