diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 966012ccd..1046937f0 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.1.0 +current_version = 3.2.0 commit = True tag = True tag_name = {new_version} diff --git a/pyproject.toml b/pyproject.toml index 6eacd98c6..33b774480 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pytezos" -version = "3.1.0" +version = "3.2.0" description = "Python toolkit for Tezos" license = "MIT" authors = ["Michael Zaikin ", "Arthur Breitman", "Roman Serikov"] diff --git a/src/michelson_kernel/__init__.py b/src/michelson_kernel/__init__.py index 7f5601d95..573cf70bb 100644 --- a/src/michelson_kernel/__init__.py +++ b/src/michelson_kernel/__init__.py @@ -1 +1 @@ -__version__ = '3.1.0' +__version__ = '3.2.0' diff --git a/src/pytezos/__init__.py b/src/pytezos/__init__.py index eef693e8e..236145ba8 100644 --- a/src/pytezos/__init__.py +++ b/src/pytezos/__init__.py @@ -21,6 +21,6 @@ from pytezos.michelson.types.base import MichelsonType, Undefined from pytezos.michelson.types.core import Unit -__version__ = '3.1.0' +__version__ = '3.2.0' pytezos = PyTezosClient()