From ee2e61d15aff42bcf5983280f12b3d3c8dde0008 Mon Sep 17 00:00:00 2001 From: bill Date: Wed, 14 Apr 2021 10:02:28 +0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.2=20=E2=86=92=200.1.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- convex_api/__init__.py | 2 +- docs/source/conf.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 34c2ade..5e90c65 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.2 +current_version = 0.1.3 commit = True tag = True diff --git a/convex_api/__init__.py b/convex_api/__init__.py index 411478f..f7b84b5 100644 --- a/convex_api/__init__.py +++ b/convex_api/__init__.py @@ -8,4 +8,4 @@ from convex_api.convex_api import ConvexAPI # noqa: F401 -__version__ = "__version__ = '0.1.2'" +__version__ = "__version__ = '0.1.3'" diff --git a/docs/source/conf.py b/docs/source/conf.py index 5bd6f58..6b4e38d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -27,7 +27,7 @@ author = 'convex-api-py contributors' # The full version, including alpha/beta/rc tags -release = '0.1.2' +release = '0.1.3' # The short X.Y version release_parts = release.split('.') # a list version = release_parts[0] + '.' + release_parts[1] + '.' + release_parts[2] diff --git a/setup.py b/setup.py index 0ef2044..d69181d 100644 --- a/setup.py +++ b/setup.py @@ -79,6 +79,6 @@ tests_require=test_requirements, python_requires='>=3.6', url='https://github.com/DEX-Company/convex-api-py', - version='0.1.2', + version='0.1.3', zip_safe=False, )