From 398e52392063fe903b533bf1332b99f5288ada18 Mon Sep 17 00:00:00 2001 From: Abel Armoa <30988000+aarmoa@users.noreply.github.com> Date: Wed, 20 Nov 2024 12:25:09 -0300 Subject: [PATCH] (fix) Updated incorrect deprecation comment --- pyinjective/composer.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyinjective/composer.py b/pyinjective/composer.py index 64c9251c..6b89473a 100644 --- a/pyinjective/composer.py +++ b/pyinjective/composer.py @@ -2559,7 +2559,7 @@ def MsgGrantTyped( **kwargs, ): """ - This method is deprecated and will be removed soon. Please use `fetch_l3_spot_orderbook_v2` instead + This method is deprecated and will be removed soon. Please use `create_typed_msg_grant` instead """ warn("This method is deprecated. Use create_typed_msg_grant instead", DeprecationWarning, stacklevel=2) diff --git a/pyproject.toml b/pyproject.toml index 1ab4da95..024cbe31 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "injective-py" -version = "1.9.0-pre2" +version = "1.9.0-pre" description = "Injective Python SDK, with Exchange API Client" authors = ["Injective Labs "] license = "Apache-2.0"