Skip to content

Commit

Permalink
Bump version: 0.3.0 → 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
billbsing committed Mar 5, 2024
1 parent c21430f commit 27915c8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.0
current_version = 0.3.1
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion convex_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'"
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

0 comments on commit 27915c8

Please sign in to comment.