Skip to content

Commit 8f552ab

Browse files
authored
Merge pull request #206 from poissoncorp/RDBC-796
RDBC-796 Release 5.2.5 client to solve dependency conflicts
2 parents 16cf815 + 631c2e0 commit 8f552ab

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ Although new API isn't compatible with the previous one, it comes with **many im
2828
2929
## What's new?
3030

31+
###### 5.2.5+
32+
- Changes available in the [releases](https://github.com/ravendb/ravendb-python-client/releases) section.
33+
3134
###### 5.2.4
3235
- Bulk insert dependencies [bugfix](https://github.com/ravendb/ravendb-python-client/pull/184)
3336

README_pypi.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ Although new API isn't compatible with the previous one, it comes with **many im
2525

2626
## What's new?
2727

28+
###### 5.2.5+
29+
- Changes available in the [releases](https://github.com/ravendb/ravendb-python-client/releases) section.
30+
2831
###### 5.2.4
2932
- Bulk insert dependencies [bugfix](https://github.com/ravendb/ravendb-python-client/pull/184)
3033

ravendb/http/request_executor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
class RequestExecutor:
4848
__INITIAL_TOPOLOGY_ETAG = -2
4949
__GLOBAL_APPLICATION_IDENTIFIER = uuid.uuid4()
50-
CLIENT_VERSION = "5.2.4"
50+
CLIENT_VERSION = "5.2.5"
5151
logger = logging.getLogger("request_executor")
5252

5353
# todo: initializer should take also cryptography certificates

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
setup(
44
name="ravendb",
55
packages=find_packages(exclude=["*.tests.*", "tests", "*.tests", "tests.*"]),
6-
version="5.2.4",
6+
version="5.2.5",
77
long_description_content_type="text/markdown",
88
long_description=open("README_pypi.md").read(),
99
description="Python client for RavenDB NoSQL Database",
@@ -21,7 +21,7 @@
2121
"requests >= 2.27.1",
2222
"requests-pkcs12 >= 1.13",
2323
"pyOpenSSL >= 22.0.0",
24-
"ijson >= 3",
24+
"ijson ~= 3.2.3",
2525
"websocket-client >= 0.46.0",
2626
"inflect >= 5.4.0",
2727
],

0 commit comments

Comments
 (0)