From 3606b22501da0f468f6a201a9e0bb40d72b8fb7f Mon Sep 17 00:00:00 2001 From: Grzegorz Lachowski Date: Mon, 13 Sep 2021 11:39:17 +0200 Subject: [PATCH 1/2] bump version to 5.0.0.2 --- pyravendb/connection/requests_executor.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyravendb/connection/requests_executor.py b/pyravendb/connection/requests_executor.py index d978c217..7a3386c5 100644 --- a/pyravendb/connection/requests_executor.py +++ b/pyravendb/connection/requests_executor.py @@ -56,7 +56,7 @@ def __init__(self, database_name, certificate, conventions=None, **kwargs): self._last_known_urls = None self.headers = {"Accept": "application/json", - "Raven-Client-Version": "5.0.0.1"} + "Raven-Client-Version": "5.0.0.2"} self.update_topology_lock = Lock() self.update_timer_lock = Lock() diff --git a/setup.py b/setup.py index c10d7926..c49617ad 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='pyravendb', packages=find_packages(), - version='5.0.0.1', + version='5.0.0.2', long_description=open("README.rst").read(), description='This is the official python client for RavenDB v5.0 document database', author='RavenDB', From 40030e567abeb7bba657ce7e0458339163efb8ca Mon Sep 17 00:00:00 2001 From: Grzegorz Lachowski Date: Mon, 13 Sep 2021 11:45:46 +0200 Subject: [PATCH 2/2] update package description --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c49617ad..49c7eeea 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ packages=find_packages(), version='5.0.0.2', long_description=open("README.rst").read(), - description='This is the official python client for RavenDB v5.0 document database', + description='Official python client for RavenDB NoSQL Document Database', author='RavenDB', author_email='support@ravendb.net', url='https://github.com/ravendb/RavenDB-Python-Client',