From 631c2e0844fd0a75b6b6aaf1432ebe84e1cfa66b Mon Sep 17 00:00:00 2001 From: Gracjan Sadowicz Date: Thu, 8 Feb 2024 16:26:50 +0100 Subject: [PATCH] RDBC-796 Release 5.2.5 client to solve dependency conflicts --- README.md | 3 +++ README_pypi.md | 3 +++ ravendb/http/request_executor.py | 2 +- setup.py | 4 ++-- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1e77d815..d1acd5d7 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,9 @@ Although new API isn't compatible with the previous one, it comes with **many im ## What's new? +###### 5.2.5+ +- Changes available in the [releases](https://github.com/ravendb/ravendb-python-client/releases) section. + ###### 5.2.4 - Bulk insert dependencies [bugfix](https://github.com/ravendb/ravendb-python-client/pull/184) diff --git a/README_pypi.md b/README_pypi.md index 97b3967a..284d5a28 100644 --- a/README_pypi.md +++ b/README_pypi.md @@ -25,6 +25,9 @@ Although new API isn't compatible with the previous one, it comes with **many im ## What's new? +###### 5.2.5+ +- Changes available in the [releases](https://github.com/ravendb/ravendb-python-client/releases) section. + ###### 5.2.4 - Bulk insert dependencies [bugfix](https://github.com/ravendb/ravendb-python-client/pull/184) diff --git a/ravendb/http/request_executor.py b/ravendb/http/request_executor.py index 6cb15389..b81c13e1 100644 --- a/ravendb/http/request_executor.py +++ b/ravendb/http/request_executor.py @@ -47,7 +47,7 @@ class RequestExecutor: __INITIAL_TOPOLOGY_ETAG = -2 __GLOBAL_APPLICATION_IDENTIFIER = uuid.uuid4() - CLIENT_VERSION = "5.2.4" + CLIENT_VERSION = "5.2.5" logger = logging.getLogger("request_executor") # todo: initializer should take also cryptography certificates diff --git a/setup.py b/setup.py index b8b6073e..6ab740fa 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="ravendb", packages=find_packages(exclude=["*.tests.*", "tests", "*.tests", "tests.*"]), - version="5.2.4", + version="5.2.5", long_description_content_type="text/markdown", long_description=open("README_pypi.md").read(), description="Python client for RavenDB NoSQL Database", @@ -21,7 +21,7 @@ "requests >= 2.27.1", "requests-pkcs12 >= 1.13", "pyOpenSSL >= 22.0.0", - "ijson >= 3", + "ijson ~= 3.2.3", "websocket-client >= 0.46.0", "inflect >= 5.4.0", ],