Skip to content

Commit

Permalink
Merge pull request #206 from poissoncorp/RDBC-796
Browse files Browse the repository at this point in the history
RDBC-796 Release 5.2.5 client to solve dependency conflicts
poissoncorp authored Feb 8, 2024
2 parents 16cf815 + 631c2e0 commit 8f552ab
Showing 4 changed files with 9 additions and 3 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)

3 changes: 3 additions & 0 deletions README_pypi.md
Original file line number Diff line number Diff line change
@@ -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)

2 changes: 1 addition & 1 deletion ravendb/http/request_executor.py
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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",
],

0 comments on commit 8f552ab

Please sign in to comment.