Skip to content

Commit

Permalink
Merge pull request #170 from poissoncorp/v5.2
Browse files Browse the repository at this point in the history
Bump to v5.2.2
  • Loading branch information
poissoncorp committed Mar 3, 2023
2 parents cc43c15 + 83c01a7 commit dd3fd60
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 12 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,14 @@ Although new API isn't compatible with the previous one, it comes with **many im
## What's new?

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

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

###### 5.2.0 (stable)
###### 5.2.0
- **Subscriptions**
- Document streams
- Secured subscriptions
Expand Down Expand Up @@ -118,10 +123,9 @@ Although new API isn't compatible with the previous one, it comes with **many im


### **Coming soon, work in progress**
- Bulk Insert
- Counters & Time Series
- Replication & ETL Commands

- Streaming (ready, will be merged on v5.4 - https://github.com/ravendb/ravendb-python-client/pull/168)

----

Expand Down
18 changes: 11 additions & 7 deletions README_pypi.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,14 @@ Although new API isn't compatible with the previous one, it comes with **many im
## What's new?


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

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

###### 5.2.0
- **Subscriptions**
- Document streams
- Secured subscriptions
Expand Down Expand Up @@ -113,14 +119,12 @@ Although new API isn't compatible with the previous one, it comes with **many im
-----

### **Coming soon, work in progress**
- Counters, Time Series
- Streams and Subscriptions
- Select fields
- Task related commands (crud for replication, subscriptions, etl) + connection strings


- Counters & Time Series
- Replication & ETL Commands
- Streaming (ready, will be merged on v5.4 - https://github.com/ravendb/ravendb-python-client/pull/168)

----

### Demo

##### Working with secured server
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 @@ -46,7 +46,7 @@
class RequestExecutor:
__INITIAL_TOPOLOGY_ETAG = -2
__GLOBAL_APPLICATION_IDENTIFIER = uuid.uuid4()
CLIENT_VERSION = "5.2.1"
CLIENT_VERSION = "5.2.2"
logger = logging.getLogger("request_executor")

# todo: initializer should take also cryptography certificates
Expand Down
2 changes: 1 addition & 1 deletion 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.1",
version="5.2.2",
long_description_content_type="text/markdown",
long_description=open("README_pypi.md").read(),
description="Python client for RavenDB NoSQL Database",
Expand Down

0 comments on commit dd3fd60

Please sign in to comment.