diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8245887..4e2dc5b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.4 +current_version = 0.2.5 commit = True tag = True diff --git a/convex_api/__init__.py b/convex_api/__init__.py index e209267..e33e806 100644 --- a/convex_api/__init__.py +++ b/convex_api/__init__.py @@ -9,4 +9,4 @@ from convex_api.contract import Contract # noqa: F401 from convex_api.key_pair import KeyPair # noqa: F401 -__version__ = "__version__ = '0.2.4'" +__version__ = "__version__ = '0.2.5'" diff --git a/docs/source/conf.py b/docs/source/conf.py index 4af05bc..b2d1389 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.2.4' +release = '0.2.5' # 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 e649632..50336bc 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.2.4', + version='0.2.5', zip_safe=False, )