From fed589217d30a32698f6e3996286f3ca544aaa66 Mon Sep 17 00:00:00 2001 From: Github Actions Date: Wed, 12 Feb 2025 17:10:40 +0000 Subject: [PATCH] release 7.0.1 --- fireblocks/__init__.py | 2 +- fireblocks/configuration.py | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/fireblocks/__init__.py b/fireblocks/__init__.py index 5ef0ecf..c4110e6 100644 --- a/fireblocks/__init__.py +++ b/fireblocks/__init__.py @@ -15,7 +15,7 @@ """ # noqa: E501 -__version__ = "0.0.0" +__version__ = "7.0.1" # import apis into sdk package from fireblocks.api.api_user_api import ApiUserApi diff --git a/fireblocks/configuration.py b/fireblocks/configuration.py index 03f60c7..5413241 100644 --- a/fireblocks/configuration.py +++ b/fireblocks/configuration.py @@ -424,7 +424,7 @@ def to_debug_report(self): "OS: {env}\n" "Python Version: {pyversion}\n" "Version of the API: 1.6.2\n" - "SDK Package Version: 0.0.0".format(env=sys.platform, pyversion=sys.version) + "SDK Package Version: 7.0.1".format(env=sys.platform, pyversion=sys.version) ) def get_host_settings(self): diff --git a/pyproject.toml b/pyproject.toml index 176ccaf..622a39d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fireblocks" -version = "0.0.0" +version = "7.0.1" description = "Fireblocks API" authors = ["Fireblocks "] license = "MIT License" diff --git a/setup.py b/setup.py index f0a9f52..aff2783 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools NAME = "fireblocks" -VERSION = "0.0.0" +VERSION = "7.0.1" PYTHON_REQUIRES = ">=3.8" REQUIRES = [ "urllib3 >= 1.25.3, < 2.1.0",