From 0d285375746ae0e89b7b8fc1940a3f22255902d7 Mon Sep 17 00:00:00 2001 From: abel Date: Fri, 10 May 2024 08:43:23 +0100 Subject: [PATCH] (fix) Added version number for protobuf dependency in pyproject.toml file --- CHANGELOG.md | 4 ++++ pyproject.toml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bcfd5188..ad9fb01e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## [1.5.2] - 2024-05-10 +### Changed +- Updated `protobuf` dependency version to ">=5.26.1" + ## [1.5.1] - 2024-05-02 ### Changed - Updated calls to `json_format.MessageToDict` for compliance with the new version of the `protobuf` library diff --git a/pyproject.toml b/pyproject.toml index 2253dc33..47c80c28 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "injective-py" -version = "1.5.1" +version = "1.5.2" description = "Injective Python SDK, with Exchange API Client" authors = ["Injective Labs "] license = "Apache-2.0" @@ -32,7 +32,7 @@ grpcio = "*" grpcio-tools = "*" hdwallets = "*" mnemonic = "*" -protobuf = "*" +protobuf = ">=5.26.1" requests = "*" safe-pysha3 = "*" urllib3 = "*"