From dac40c13071ecf0cee0101685ad7910246050371 Mon Sep 17 00:00:00 2001 From: Gracjan Sadowicz Date: Wed, 27 Aug 2025 15:46:57 +0200 Subject: [PATCH] RDBC-933 Release 7.1.2 Python Client --- ravendb/http/request_executor.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ravendb/http/request_executor.py b/ravendb/http/request_executor.py index 6f1717fd..0658fc84 100644 --- a/ravendb/http/request_executor.py +++ b/ravendb/http/request_executor.py @@ -48,7 +48,7 @@ class RequestExecutor: __INITIAL_TOPOLOGY_ETAG = -2 __GLOBAL_APPLICATION_IDENTIFIER = uuid.uuid4() - CLIENT_VERSION = "7.1.0" + CLIENT_VERSION = "7.1.2" logger = logging.getLogger("request_executor") # todo: initializer should take also cryptography certificates diff --git a/setup.py b/setup.py index be89dd25..e9021481 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="ravendb", packages=find_packages(exclude=["*.tests.*", "tests", "*.tests", "tests.*"]), - version="7.1.0", + version="7.1.2", long_description_content_type="text/markdown", long_description=open("README_pypi.md").read(), description="Python client for RavenDB NoSQL Database",