From 45d0f739fc82691ef2d82db247e7c350a191ae24 Mon Sep 17 00:00:00 2001 From: Gracjan Sadowicz Date: Wed, 17 May 2023 16:04:23 +0200 Subject: [PATCH] Bump to v5.2.4 --- README.md | 3 +++ README_pypi.md | 3 +++ ravendb/http/request_executor.py | 2 +- setup.py | 2 +- 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 209381d8..a84fbb1b 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.4 +- Bulk insert dependencies [bugfix](https://github.com/ravendb/ravendb-python-client/pull/184) + ###### 5.2.3 - **Counters** - Counters indexes diff --git a/README_pypi.md b/README_pypi.md index 31b35d58..936f2ae6 100644 --- a/README_pypi.md +++ b/README_pypi.md @@ -24,6 +24,9 @@ Although new API isn't compatible with the previous one, it comes with **many im ## What's new? +###### 5.2.4 +- Bulk insert dependencies [bugfix](https://github.com/ravendb/ravendb-python-client/pull/184) + ###### 5.2.3 - **Counters** - Counters indexes diff --git a/ravendb/http/request_executor.py b/ravendb/http/request_executor.py index 1bc917a6..cb48df4e 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.3" + CLIENT_VERSION = "5.2.4" logger = logging.getLogger("request_executor") # todo: initializer should take also cryptography certificates diff --git a/setup.py b/setup.py index 07c9d189..c17a13fe 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.3", + version="5.2.4", long_description_content_type="text/markdown", long_description=open("README_pypi.md").read(), description="Python client for RavenDB NoSQL Database",