Skip to content

Commit

Permalink
RDBC-796 Release 5.2.5 client to solve dependency conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
poissoncorp committed Feb 8, 2024
1 parent 47cfa26 commit 631c2e0
Show file tree
Hide file tree
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
Expand Up @@ -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)

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

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

0 comments on commit 631c2e0

Please sign in to comment.