From 83c01a735e924de968b09644b66a4639e33b54b9 Mon Sep 17 00:00:00 2001 From: Gracjan Sadowicz Date: Fri, 3 Mar 2023 15:09:57 +0100 Subject: [PATCH] Bump to v5.2.2 --- README.md | 10 +++++++--- README_pypi.md | 18 +++++++++++------- ravendb/http/request_executor.py | 2 +- setup.py | 2 +- 4 files changed, 20 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 341c1b6b..880de3e1 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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) ---- diff --git a/README_pypi.md b/README_pypi.md index e1f75b93..d6268f55 100644 --- a/README_pypi.md +++ b/README_pypi.md @@ -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 @@ -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 diff --git a/ravendb/http/request_executor.py b/ravendb/http/request_executor.py index 4e8fc944..ea4f611e 100644 --- a/ravendb/http/request_executor.py +++ b/ravendb/http/request_executor.py @@ -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 diff --git a/setup.py b/setup.py index 9d602599..bbeca48d 100644 --- a/setup.py +++ b/setup.py @@ -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",