From e434a5cbabe3670a8ed5290691ba40016dcf9c91 Mon Sep 17 00:00:00 2001 From: Gracjan Sadowicz Date: Wed, 10 Dec 2025 17:19:23 +0100 Subject: [PATCH] RDBC-982 Release 7.1.4 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 85aa98fc..4501a769 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.3" + CLIENT_VERSION = "7.1.4" logger = logging.getLogger("request_executor") # todo: initializer should take also cryptography certificates diff --git a/setup.py b/setup.py index c5b81c41..f4ab7639 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.3", + version="7.1.4", long_description_content_type="text/markdown", long_description=open("README_pypi.md").read(), description="Python client for RavenDB NoSQL Database",