diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9fa4f8cbd..760461b9f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.0.2 +current_version = 3.0.3 commit = True tag = True tag_name = {new_version} @@ -10,4 +10,4 @@ replace = version = "{new_version}" [bumpversion:file:pytezos/__init__.py] search = __version__ = '{current_version}' -replace = __version__ = '{new_version}' \ No newline at end of file +replace = __version__ = '{new_version}' diff --git a/pyproject.toml b/pyproject.toml index 8bc78f9e4..4a7a651a2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pytezos" -version = "3.0.2" +version = "3.0.3" description = "Python toolkit for Tezos" license = "MIT" authors = ["Michael Zaikin ", "Arthur Breitman", "Roman Serikov"] diff --git a/pytezos/__init__.py b/pytezos/__init__.py index 73d1d0954..dd0d450ea 100644 --- a/pytezos/__init__.py +++ b/pytezos/__init__.py @@ -24,6 +24,6 @@ from pytezos.michelson.types.base import Undefined from pytezos.michelson.types.core import Unit -__version__ = '3.0.2' +__version__ = '3.0.3' pytezos = PyTezosClient()