Skip to content

Commit dd3fd60

Browse files
authored
Merge pull request #170 from poissoncorp/v5.2
Bump to v5.2.2
2 parents cc43c15 + 83c01a7 commit dd3fd60

File tree

4 files changed

+20
-12
lines changed

4 files changed

+20
-12
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,14 @@ Although new API isn't compatible with the previous one, it comes with **many im
2323
2424
## What's new?
2525

26+
###### 5.2.2
27+
- New feature - **[Bulk insert](https://github.com/ravendb/ravendb-python-client/pull/161)**
28+
- Bugfixes - Cluster-wide operations ([here](https://github.com/ravendb/ravendb-python-client/pull/166))
2629

30+
###### 5.2.1
31+
- Bugfixes - Serialization while loading/querying ([here](https://github.com/ravendb/ravendb-python-client/pull/163))
2732

28-
###### 5.2.0 (stable)
33+
###### 5.2.0
2934
- **Subscriptions**
3035
- Document streams
3136
- Secured subscriptions
@@ -118,10 +123,9 @@ Although new API isn't compatible with the previous one, it comes with **many im
118123

119124

120125
### **Coming soon, work in progress**
121-
- Bulk Insert
122126
- Counters & Time Series
123127
- Replication & ETL Commands
124-
128+
- Streaming (ready, will be merged on v5.4 - https://github.com/ravendb/ravendb-python-client/pull/168)
125129

126130
----
127131

README_pypi.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,14 @@ Although new API isn't compatible with the previous one, it comes with **many im
1919
## What's new?
2020

2121

22+
###### 5.2.2
23+
- New feature - **[Bulk insert](https://github.com/ravendb/ravendb-python-client/pull/161)**
24+
- Bugfixes - Cluster-wide operations ([here](https://github.com/ravendb/ravendb-python-client/pull/166))
2225

23-
###### 5.2.0 (stable)
26+
###### 5.2.1
27+
- Bugfixes - Serialization while loading/querying ([here](https://github.com/ravendb/ravendb-python-client/pull/163))
28+
29+
###### 5.2.0
2430
- **Subscriptions**
2531
- Document streams
2632
- Secured subscriptions
@@ -113,14 +119,12 @@ Although new API isn't compatible with the previous one, it comes with **many im
113119
-----
114120

115121
### **Coming soon, work in progress**
116-
- Counters, Time Series
117-
- Streams and Subscriptions
118-
- Select fields
119-
- Task related commands (crud for replication, subscriptions, etl) + connection strings
120-
121-
122+
- Counters & Time Series
123+
- Replication & ETL Commands
124+
- Streaming (ready, will be merged on v5.4 - https://github.com/ravendb/ravendb-python-client/pull/168)
122125

123126
----
127+
124128
### Demo
125129

126130
##### Working with secured server

ravendb/http/request_executor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
class RequestExecutor:
4747
__INITIAL_TOPOLOGY_ETAG = -2
4848
__GLOBAL_APPLICATION_IDENTIFIER = uuid.uuid4()
49-
CLIENT_VERSION = "5.2.1"
49+
CLIENT_VERSION = "5.2.2"
5050
logger = logging.getLogger("request_executor")
5151

5252
# todo: initializer should take also cryptography certificates

setup.py

Lines changed: 1 addition & 1 deletion
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.1",
6+
version="5.2.2",
77
long_description_content_type="text/markdown",
88
long_description=open("README_pypi.md").read(),
99
description="Python client for RavenDB NoSQL Database",

0 commit comments

Comments
 (0)