From 27915c8a70fca09fd09ff59391c0c12cc7e62141 Mon Sep 17 00:00:00 2001 From: bill Date: Tue, 5 Mar 2024 15:49:27 +0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.3.0=20=E2=86=92=200.3.1?= 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 dab355b..320743b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.0 +current_version = 0.3.1 commit = True tag = True diff --git a/convex_api/__init__.py b/convex_api/__init__.py index 7ff6340..e9c789c 100644 --- a/convex_api/__init__.py +++ b/convex_api/__init__.py @@ -9,4 +9,4 @@ from convex_api.contract import Contract # type: ignore # noqa: F401 from convex_api.key_pair import KeyPair # type: ignore # noqa: F401 -__version__ = "__version__ = '0.3.0'" +__version__ = "__version__ = '0.3.1'" diff --git a/docs/source/conf.py b/docs/source/conf.py index 720aa60..c223029 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.3.0' +release = '0.3.1' # 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 cec706d..5b6c05d 100644 --- a/setup.py +++ b/setup.py @@ -82,6 +82,6 @@ tests_require=test_requirements, python_requires='>=3.10', url='https://github.com/Convex-Dev/convex-api-py', - version='0.3.0', + version='0.3.1', zip_safe=False, )