From 5f4896e2b0957197dee6d131335784e95f6f8317 Mon Sep 17 00:00:00 2001 From: Gracjan Sadowicz Date: Mon, 1 Sep 2025 14:07:45 +0200 Subject: [PATCH 1/2] Hotfix - add __init__.py to /documents/operations/ai that was missing causing corrupted build --- ravendb/documents/operations/ai/__init__.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 ravendb/documents/operations/ai/__init__.py diff --git a/ravendb/documents/operations/ai/__init__.py b/ravendb/documents/operations/ai/__init__.py new file mode 100644 index 00000000..e69de29b From c6e30dfac40af8445da199fa0d864dae4285cb44 Mon Sep 17 00:00:00 2001 From: Gracjan Sadowicz Date: Mon, 1 Sep 2025 14:10:44 +0200 Subject: [PATCH 2/2] 7.1.2.post1 release --- README.md | 2 +- README_pypi.md | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9d799098..250f4133 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ pip install ravendb ```` ## Introduction and changelog -Python client API (v7.0) for [RavenDB](https://ravendb.net/), a NoSQL document database. +Python client API (v7.1) for [RavenDB](https://ravendb.net/), a NoSQL document database. **Type-hinted entire project and API results** - using the API is now much more comfortable with IntelliSense diff --git a/README_pypi.md b/README_pypi.md index 5b92e1b1..9dbc2da8 100644 --- a/README_pypi.md +++ b/README_pypi.md @@ -8,7 +8,7 @@ pip install ravendb ``` ## Introduction -Python client API (v7.0) for [RavenDB](https://ravendb.net/) , a NoSQL document database. +Python client API (v7.1) for [RavenDB](https://ravendb.net/) , a NoSQL document database. **Type-hinted entire project and API results** - using the API is now much more comfortable with IntelliSense diff --git a/setup.py b/setup.py index e9021481..b21c3b78 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="ravendb", packages=find_packages(exclude=["*.tests.*", "tests", "*.tests", "tests.*"]), - version="7.1.2", + version="7.1.2.post1", long_description_content_type="text/markdown", long_description=open("README_pypi.md").read(), description="Python client for RavenDB NoSQL Database",