Skip to content

Commit b72fb72

Browse files
committed
RDBC-1017 Bump version to v7.2.0
1 parent e592cd0 commit b72fb72

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/RavenClient.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: tests/python
22

33
on:
44
push:
5-
branches: [v7.1]
5+
branches: [v7.2]
66
pull_request:
7-
branches: [v7.1]
7+
branches: [v7.2]
88
schedule:
99
- cron: '0 10 * * *'
1010
workflow_dispatch:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pip install ravendb
88
````
99

1010
## Introduction and changelog
11-
Python client API (v7.1) for [RavenDB](https://ravendb.net/), a NoSQL document database.
11+
Python client API (v7.2) for [RavenDB](https://ravendb.net/), a NoSQL document database.
1212

1313
**Type-hinted entire project and API results** - using the API is now much more comfortable with IntelliSense
1414

README_pypi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pip install ravendb
88
```
99

1010
## Introduction
11-
Python client API (v7.1) for [RavenDB](https://ravendb.net/) , a NoSQL document database.
11+
Python client API (v7.2) for [RavenDB](https://ravendb.net/) , a NoSQL document database.
1212

1313
**Type-hinted entire project and API results** - using the API is now much more comfortable with IntelliSense
1414

ravendb/http/request_executor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
class RequestExecutor:
4949
__INITIAL_TOPOLOGY_ETAG = -2
5050
__GLOBAL_APPLICATION_IDENTIFIER = uuid.uuid4()
51-
CLIENT_VERSION = "7.1.5"
51+
CLIENT_VERSION = "7.2.0"
5252
logger = logging.getLogger("request_executor")
5353

5454
# 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="7.1.5",
6+
version="7.2.0",
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)